/PHP-5.6/ext/xsl/tests/ |
H A D | xslt002.phpt | 9 // changing output method to html 11 $res = $xp->query("/xsl:stylesheet/xsl:output/@method"); 13 print "No or more than one xsl:output/@method found";
|
H A D | bug54446_with_ini.phpt | 2 Bug #54446 (Arbitrary file creation via libxslt 'output' extension with php.ini setting) 23 <sax:output href="$outputfile" method="text"> 25 </sax:output> 99 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %s element output in %s on li… 103 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %d element output in %s on li… 111 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %s element output in %s on li… 115 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %d element output in %s on li… 124 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %s element output in %s on li… 128 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %d element output in %s on li…
|
/PHP-5.6/ext/standard/tests/general_functions/ |
H A D | ob_get_flush_error.phpt | 8 …cription: Get current buffer contents, flush (send) the output buffer, and delete current output b… 9 * Source code: main/output.c
|
H A D | ob_get_flush_basic.phpt | 8 …cription: Get current buffer contents, flush (send) the output buffer, and delete current output b… 9 * Source code: main/output.c
|
/PHP-5.6/ext/standard/tests/filters/ |
H A D | read.phpt | 9 $output = 0; 14 $output = 1; 19 $output = 1; 21 return $output ? PSFS_PASS_ON : PSFS_FEED_ME;
|
/PHP-5.6/ext/standard/tests/http/ |
H A D | bug48929.phpt | 19 $pid = http_server("tcp://127.0.0.1:12342", $responses, $output); 25 fseek($output, 0, SEEK_SET); 26 var_dump(stream_get_contents($output)); 27 fseek($output, 0, SEEK_SET);
|
H A D | bug67430.phpt | 25 $pid = http_server('tcp://127.0.0.1:12342', $responses, $output); 28 fseek($output, 0, SEEK_SET); 29 echo stream_get_contents($output);
|
/PHP-5.6/ext/soap/tests/ |
H A D | classmap.wsdl | 27 <output message="tns:dotestResponse"/> 31 <output message="tns:dotest2Response"/> 41 <output> 43 </output> 50 <output> 52 </output>
|
/PHP-5.6/ext/standard/ |
H A D | pack.c | 103 *output++ = v[map[i]]; in php_pack() 124 char *output; in PHP_FUNCTION() local 340 output = emalloc(outputsize + 1); in PHP_FUNCTION() 400 output[++outputpos] = 0; in PHP_FUNCTION() 405 output[outputpos] |= (n << nibbleshift); in PHP_FUNCTION() 495 memcpy(&output[outputpos], &v, sizeof(v)); in PHP_FUNCTION() 508 memcpy(&output[outputpos], &v, sizeof(v)); in PHP_FUNCTION() 515 memset(&output[outputpos], '\0', arg); in PHP_FUNCTION() 539 output[outputpos] = '\0'; in PHP_FUNCTION() 540 RETVAL_STRINGL(output, outputpos, 1); in PHP_FUNCTION() [all …]
|
/PHP-5.6/ext/mbstring/tests/ |
H A D | mb_http_output.phpt | 12 // Set HTTP output encoding to ASCII 18 // Set HTTP output encoding to SJIS 24 // Set HTTP output encoding to JIS 30 // Set HTTP output encoding to UTF8 36 // Set HTTP output encoding to EUC-JP
|
H A D | mb_output_handler_euc_jp.phpt | 14 $output = ob_get_clean(); 16 var_dump( $output );
|
/PHP-5.6/ext/spl/ |
H A D | doxygen.cfg | 103 # configuration options related to the HTML output 123 # configuration options related to the LaTeX output 138 # configuration options related to the RTF output 147 # configuration options related to the man page output 154 # configuration options related to the XML output 162 # configuration options for the AutoGen Definitions output 166 # configuration options related to the Perl module output
|
/PHP-5.6/ext/oci8/tests/ |
H A D | bind_boolean_1.phpt | 9 die("skip expected output only valid when using Oracle Database 12c or greater"); 52 :output := true; 54 :output := false; 58 oci_bind_by_name($s, ':output', $output, -1, OCI_B_BOL); 62 var_dump($output);
|
/PHP-5.6/ext/hash/ |
H A D | hash_haval.c | 262 context->passes = p; context->output = b; \ 331 ((context->output & 0x03) << 6); in PHP_HAVAL128Final() 332 bits[1] = (context->output >> 2); in PHP_HAVAL128Final() 385 ((context->output & 0x03) << 6); in PHP_HAVAL160Final() 386 bits[1] = (context->output >> 2); in PHP_HAVAL160Final() 439 ((context->output & 0x03) << 6); in PHP_HAVAL192Final() 440 bits[1] = (context->output >> 2); in PHP_HAVAL192Final() 479 ((context->output & 0x03) << 6); in PHP_HAVAL224Final() 480 bits[1] = (context->output >> 2); in PHP_HAVAL224Final() 520 ((context->output & 0x03) << 6); in PHP_HAVAL256Final() [all …]
|
/PHP-5.6/ext/standard/tests/file/windows_links/ |
H A D | bug48746_2.phpt | 25 exec("mkdir " . $dirname, $output, $ret_val); 29 $ret = exec($mountvol . " " . $drive . " /L", $output, $ret_val); 30 exec("mklink /j mounted_volume " . $ret, $output, $ret_val); 32 exec("mklink /j mklink_junction directory", $output, $ret_val);
|
/PHP-5.6/ext/fileinfo/tests/ |
H A D | finfo_phpinfo_basic.phpt | 12 $output = ob_get_clean(); 14 var_dump(preg_match("/fileinfo support => enabled/", $output));
|
/PHP-5.6/ext/tokenizer/ |
H A D | tokenizer.php | 30 $output .= $chunk; 33 print $output;
|
/PHP-5.6/sapi/cli/tests/ |
H A D | php_cli_server_015.phpt | 19 $output = ''; 34 $output .= fgets($fp); 37 echo $output;
|
/PHP-5.6/tests/output/ |
H A D | ob_013.phpt | 2 output buffering - handlers/status 32 [0] => default output handler 52 [name] => default output handler
|
H A D | ob_end_flush_basic_001.phpt | 6 * Description: Flush (send) the output buffer, and delete current output buffer 7 * Source code: main/output.c
|
/PHP-5.6/ext/openssl/tests/ |
H A D | bug55646.phpt | 28 $output = openssl_csr_get_subject($csr); 32 echo "C: ".$output['OU']."\n"; 33 echo "D: ".stringAsHex($output['OU'])."\n";
|
/PHP-5.6/ext/session/tests/ |
H A D | 020.phpt | 2 rewriter uses arg_separator.output for modifying URLs 11 arg_separator.output="&"
|
/PHP-5.6/Zend/tests/ |
H A D | bug64677.phpt | 6 public function show_output($prepend, $output = '') { 14 function show_outputa($prepend, $output) {
|
/PHP-5.6/ext/soap/tests/bugs/ |
H A D | bug29061.wsdl | 21 <output message="y:getQuoteResponse"/> 31 <output> 33 </output>
|
/PHP-5.6/ext/standard/tests/strings/ |
H A D | print_basic.phpt | 23 output as well"; 55 This uses the "here document" syntax to output 72 output as well 76 output as well. 88 This uses the "here document" syntax to output
|