Searched refs:xml_set_processing_instruction_handler (Results 1 – 8 of 8) sorted by relevance
/PHP-7.0/ext/xml/tests/ |
H A D | xml_set_processing_instruction_handler_error.phpt | 2 Test xml_set_processing_instruction_handler() function : error conditions 11 /* Prototype : proto int xml_set_processing_instruction_handler(resource parser, string hdl) 17 echo "*** Testing xml_set_processing_instruction_handler() : error conditions ***\n"; 20 //Test xml_set_processing_instruction_handler with one more than the expected number of arguments 25 var_dump( xml_set_processing_instruction_handler(null, $hdl, $extra_arg) ); 27 // Testing xml_set_processing_instruction_handler with one less than the expected number of argumen… 30 var_dump( xml_set_processing_instruction_handler(null) ); 35 *** Testing xml_set_processing_instruction_handler() : error conditions *** 37 -- Testing xml_set_processing_instruction_handler() function with more than expected no. of argumen… 39 Warning: xml_set_processing_instruction_handler() expects exactly 2 parameters, 3 given in %s on li… [all …]
|
H A D | xml_set_processing_instruction_handler_variation1.phpt | 2 Test xml_set_processing_instruction_handler() function : usage variations 11 /* Prototype : proto int xml_set_processing_instruction_handler(resource parser, string hdl) 17 echo "*** Testing xml_set_processing_instruction_handler() : usage variations ***\n"; 96 var_dump( xml_set_processing_instruction_handler($value, $hdl) ); 103 *** Testing xml_set_processing_instruction_handler() : usage variations *** 127 Warning: xml_set_processing_instruction_handler() expects parameter 1 to be resource, float given i… 132 Warning: xml_set_processing_instruction_handler() expects parameter 1 to be resource, float given i… 137 Warning: xml_set_processing_instruction_handler() expects parameter 1 to be resource, float given i… 142 Warning: xml_set_processing_instruction_handler() expects parameter 1 to be resource, float given i… 177 Warning: xml_set_processing_instruction_handler() expects parameter 1 to be resource, null given in… [all …]
|
H A D | xml_set_processing_instruction_handler_basic.phpt | 2 Test xml_set_processing_instruction_handler function : basic 11 /* Prototype : proto bool xml_set_processing_instruction_handler ( resource $parser , callback $… 30 xml_set_processing_instruction_handler($parser, "PIHandler"); 43 echo "Simple test of xml_set_processing_instruction_handler() function\n"; 49 Simple test of xml_set_processing_instruction_handler() function
|
H A D | xml001.phpt | 16 xml_set_processing_instruction_handler($xml_parser, "PIHandler");
|
H A D | xml003.phpt | 57 xml_set_processing_instruction_handler($xml_parser, "PIHandler");
|
H A D | xml002.phpt | 57 xml_set_processing_instruction_handler($xml_parser, array($obj, "PIHandler"));
|
/PHP-7.0/ext/xml/ |
H A D | php_xml.h | 119 PHP_FUNCTION(xml_set_processing_instruction_handler);
|
H A D | xml.c | 229 PHP_FE(xml_set_processing_instruction_handler, arginfo_xml_set_processing_instruction_handler) 1246 PHP_FUNCTION(xml_set_processing_instruction_handler) in PHP_FUNCTION() argument
|
Completed in 13 milliseconds