Searched refs:xml_set_processing_instruction_handler (Results 1 – 11 of 11) sorted by relevance
/php-src/ext/xml/tests/ |
H A D | set_handler_errors.phpt | 9 /* Use xml_set_processing_instruction_handler() for generic implementation */ 13 xml_set_processing_instruction_handler($obj, null); 23 xml_set_processing_instruction_handler($parser, true); 30 xml_set_processing_instruction_handler($parser, 10); 37 xml_set_processing_instruction_handler($parser, "nonexistent_method"); 45 xml_set_processing_instruction_handler($parser, "nonexistent_method"); 53 TypeError: xml_set_processing_instruction_handler(): Argument #1 ($parser) must be of type XMLParse… 55 TypeError: xml_set_processing_instruction_handler(): Argument #2 ($handler) must be of type callabl… 57 TypeError: xml_set_processing_instruction_handler(): Argument #2 ($handler) must be of type callabl… 60 Deprecated: xml_set_processing_instruction_handler(): Passing non-callable strings is deprecated si… [all …]
|
H A D | set_handler_deprecation_empty_string.phpt | 8 /* Use xml_set_processing_instruction_handler() for generic implementation */ 13 xml_set_processing_instruction_handler($parser, dummy(...)); 16 xml_set_processing_instruction_handler($parser, ''); 24 Deprecated: xml_set_processing_instruction_handler(): Passing non-callable strings is deprecated si…
|
H A D | xml_set_processing_instruction_handler_basic.phpt | 2 Test xml_set_processing_instruction_handler function : basic 19 xml_set_processing_instruction_handler($parser, $this->PIHandler(...)); 32 echo "Simple test of xml_set_processing_instruction_handler() function\n"; 38 Simple test of xml_set_processing_instruction_handler() function
|
H A D | set_handler_trampoline.phpt | 23 /* Use xml_set_processing_instruction_handler() for generic implementation */ 25 xml_set_processing_instruction_handler($parser, $callback);
|
H A D | xml_set_object_multiple_times.phpt | 41 xml_set_processing_instruction_handler($parser, [$a, "PIHandler"]);
|
H A D | xml001.phpt | 17 xml_set_processing_instruction_handler($xml_parser, "PIHandler");
|
H A D | xml003.phpt | 58 xml_set_processing_instruction_handler($xml_parser, "PIHandler");
|
H A D | xml002.phpt | 58 xml_set_processing_instruction_handler($xml_parser, array($obj, "PIHandler"));
|
/php-src/ext/xml/ |
H A D | xml_arginfo.h | 90 ZEND_FUNCTION(xml_set_processing_instruction_handler); 114 ZEND_FE(xml_set_processing_instruction_handler, arginfo_xml_set_processing_instruction_handler)
|
H A D | xml.stub.php | 159 function xml_set_processing_instruction_handler(XMLParser $parser, callable|string|null $handler): … function
|
H A D | xml.c | 1318 XML_SET_HANDLER_PHP_FUNCTION(xml_set_processing_instruction_handler, processingInstructionHandler, …
|
Completed in 17 milliseconds