Home
last modified time | relevance | path

Searched refs:output (Results 76 – 100 of 550) sorted by relevance

12345678910>>...22

/php-src/ext/standard/tests/http/
H A Dbug48929.phpt19 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output);
25 fseek($output, 0, SEEK_SET);
26 var_dump(stream_get_contents($output));
27 fseek($output, 0, SEEK_SET);
H A Dbug67430.phpt25 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output);
28 fseek($output, 0, SEEK_SET);
29 echo stream_get_contents($output);
/php-src/ext/soap/tests/
H A Dclassmap.wsdl27 <output message="tns:dotestResponse"/>
31 <output message="tns:dotest2Response"/>
41 <output>
43 </output>
50 <output>
52 </output>
/php-src/sapi/cli/tests/
H A Dphp_cli_server.inc35 die(sprintf("Failed opening output file %s\n", $output_file));
55 printf("Server output:\n%s\n", file_get_contents($output_file));
60 $output = file_get_contents($output_file);
61 …if (preg_match('@PHP \S* Development Server \(https?://(.*?:\d+)\) started@', $output, $matches)) {
67 echo "Server did not output startup message";
68 printf("Server output:\n%s\n", file_get_contents($output_file));
83 … $error = sprintf("Server stopped\nServer output:\n%s\n", file_get_contents($output_file));
106 printf("Server output:\n%s\n", file_get_contents($output_file));
H A D025.phpt14 $output = `$php -n -i`;
15 var_dump(str_contains($output, "extension_dir => "));
H A Dphp_cli_server_015.phpt16 $output = '';
28 $output .= fgets($fp);
31 echo $output;
/php-src/ext/standard/tests/misc/
H A Dexec_basic1.phpt12 var_dump(exec($cmd, $output));
17 var_dump(system($cmd, $output));
22 var_dump(passthru($cmd, $output));
/php-src/build/
H A DMakefile.gcov32 $(LTP) --capture --no-external --directory . --output-file $@
34 $(LTP) --output-file $@ --remove $@ '*/<stdout>' $(LCOV_EXCLUDES)
38 $(LTP_GENHTML) --legend --output-directory lcov_html/ --title "PHP Code Coverage" php_lcov.info
/php-src/ext/dom/tests/modern/html/encoding/
H A DHTMLDocument_UTF8_BOM.phpt11 $output = $dom->saveHTML();
12 echo $output, "\n";
14 var_dump(file_get_contents(__DIR__ . "/utf8_bom_output.tmp") === $output);
H A DHTMLDocument_Windows1251.phpt11 $output = $dom->saveHTML();
12 echo $output, "\n";
14 var_dump(file_get_contents(__DIR__ . "/windows1251_output.tmp") === $output);
/php-src/tests/output/
H A Dbug65593.phpt12 Fatal error: ob_start(): Cannot use output buffering in output buffering display handlers in %sbug6…
/php-src/ext/mbstring/tests/
H A Dmb_output_handler_euc_jp.phpt14 $output = ob_get_clean();
16 var_dump( $output );
/php-src/ext/standard/tests/file/windows_links/
H A Dbug48746_2.phpt19 exec("mkdir " . $dirname, $output, $ret_val);
23 $ret = exec($mountvol . " " . $drive . " /L", $output, $ret_val);
24 exec("mklink /j mounted_volume " . $ret, $output, $ret_val);
26 exec("mklink /j mklink_junction directory", $output, $ret_val);
H A Dbug73962.phpt17 exec("mkdir " . $dirname, $output, $ret_val);
21 $ret = exec($mountvol . " " . $drive . " /L", $output, $ret_val);
22 exec("mklink /d mounted_volume " . $ret, $output, $ret_val);
24 exec("mklink /d mklink_symlink \"новая папка\"", $output, $ret_val);
/php-src/ext/iconv/tests/
H A Diconv_mime_encode_001.phpt2 … Encoding parameter exceeds the maximum allowed for preference "input-charset" and "output-charset"
13 "output-charset" => "UTF-8",
23 $preferences["output-charset"] = "UTF-8".$extra;
/php-src/ext/zend_test/tests/
H A Dgh10370_3.phpt20 $output = fopen(__DIR__ . DIRECTORY_SEPARATOR . 'gh10370_003' . DIRECTORY_SEPARATOR . 'testfile', '…
22 var_dump(stream_copy_to_stream($input, $output, 10240, 0x200));
25 fclose($output);
H A Dgh10370_4.phpt19 $output = fopen(__DIR__ . DIRECTORY_SEPARATOR . 'gh10370_004_out.tar', 'w');
21 var_dump(stream_copy_to_stream($input, $output));
24 fclose($output);
/php-src/ext/fileinfo/tests/
H A Dfinfo_phpinfo_basic.phpt12 $output = ob_get_clean();
14 var_dump(preg_match("/fileinfo support => enabled/", $output));
/php-src/ext/standard/tests/
H A Dbug79821.phpt6 foreach (['var_dump', 'debug_zval_dump', 'var_export'] as $output) {
15 $output($foo[0]);
/php-src/ext/standard/tests/file/
H A Dbug69442.phpt16 …'TEST_PHP_EXECUTABLE']." -d display_errors=1 -d error_reporting=E_ALL ".$tmpFile." 2>&1", $output);
17 $output = join("\n", $output);
20 if (strstr($output, "PTY (pseudoterminal) not supported on this system") !== false) {
/php-src/ext/hash/
H A Dhash_haval.c259 context->passes = p; context->output = b; \
327 ((context->output & 0x03) << 6); in PHP_HAVAL128Final()
328 bits[1] = (context->output >> 2); in PHP_HAVAL128Final()
380 ((context->output & 0x03) << 6); in PHP_HAVAL160Final()
381 bits[1] = (context->output >> 2); in PHP_HAVAL160Final()
433 ((context->output & 0x03) << 6); in PHP_HAVAL192Final()
434 bits[1] = (context->output >> 2); in PHP_HAVAL192Final()
472 ((context->output & 0x03) << 6); in PHP_HAVAL224Final()
473 bits[1] = (context->output >> 2); in PHP_HAVAL224Final()
512 ((context->output & 0x03) << 6); in PHP_HAVAL256Final()
[all …]
/php-src/ext/tidy/
H A Dtidy.c347 TidyBuffer output; in php_tidy_quick_repair() local
352 RETVAL_STRINGL((char *) output.bp, output.size ? output.size-1 : 0); in php_tidy_quick_repair()
462 TidyBuffer output; in tidy_doc_cast_handler() local
483 if (output.size) { in tidy_doc_cast_handler()
484 ZVAL_STRINGL(out, (char *) output.bp, output.size-1); in tidy_doc_cast_handler()
538 TidyBuffer output; in tidy_doc_update_properties() local
543 if (output.size) { in tidy_doc_update_properties()
549 (char*) output.bp, in tidy_doc_update_properties()
550 output.size-1 in tidy_doc_update_properties()
1047 TidyBuffer output; in PHP_FUNCTION() local
[all …]
/php-src/ext/openssl/tests/
H A Dbug55646.phpt43 $output = openssl_csr_get_subject($csr);
47 echo "C: ".$output['OU']."\n";
48 echo "D: ".stringAsHex($output['OU'])."\n";
/php-src/ext/simplexml/tests/
H A Dgh10200.phpt14 $output = get_object_vars($xml);
15 var_dump($output);
/php-src/ext/mbstring/libmbfl/mbfl/
H A Dgenerate_name_perfect_hash_table.php88 $output = ob_get_clean(); variable
93 preg_match($pattern, $output, $matches);
101 preg_match($pattern, $output, $matches);

Completed in 40 milliseconds

12345678910>>...22