1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- #ifdef HAVE_CONFIG_H
- #include "config.h"
- #endif
- #include "php.h"
- #if HAVE_LIBXML && HAVE_DOM
- #include "php_dom.h"
- ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_string_extend_find_offset16, 0, 0, 1)
- ZEND_ARG_INFO(0, offset32)
- ZEND_END_ARG_INFO();
- ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_string_extend_find_offset32, 0, 0, 1)
- ZEND_ARG_INFO(0, offset16)
- ZEND_END_ARG_INFO();
- const zend_function_entry php_dom_string_extend_class_functions[] = {
- PHP_FALIAS(findOffset16, dom_string_extend_find_offset16, arginfo_dom_string_extend_find_offset16)
- PHP_FALIAS(findOffset32, dom_string_extend_find_offset32, arginfo_dom_string_extend_find_offset32)
- PHP_FE_END
- };
- PHP_FUNCTION(dom_string_extend_find_offset16)
- {
- DOM_NOT_IMPLEMENTED();
- }
- PHP_FUNCTION(dom_string_extend_find_offset32)
- {
- DOM_NOT_IMPLEMENTED();
- }
- #endif
|