mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
- Make usage of new PHP_FE_END macro
This commit is contained in:
parent
054e1cafa0
commit
23e438594d
@ -106,7 +106,7 @@ const zend_function_entry bcmath_functions[] = {
|
||||
PHP_FE(bcscale, arginfo_bcscale)
|
||||
PHP_FE(bccomp, arginfo_bccomp)
|
||||
PHP_FE(bcpowmod, arginfo_bcpowmod)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
zend_module_entry bcmath_module_entry = {
|
||||
|
@ -107,7 +107,7 @@ static const zend_function_entry bz2_functions[] = {
|
||||
PHP_FE(bzerror, arginfo_bzerror)
|
||||
PHP_FE(bzcompress, arginfo_bzcompress)
|
||||
PHP_FE(bzdecompress, arginfo_bzdecompress)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
zend_module_entry bz2_module_entry = {
|
||||
|
@ -148,7 +148,7 @@ const zend_function_entry calendar_functions[] = {
|
||||
PHP_FE(cal_from_jd, arginfo_cal_from_jd)
|
||||
PHP_FE(cal_days_in_month, arginfo_cal_days_in_month)
|
||||
PHP_FE(cal_info, arginfo_cal_info)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
|
||||
|
@ -228,7 +228,7 @@ const zend_function_entry com_dotnet_functions[] = {
|
||||
PHP_FE(com_message_pump, arginfo_com_message_pump)
|
||||
PHP_FE(com_load_typelib, arginfo_com_load_typelib)
|
||||
PHP_FE(com_get_active_object, arginfo_com_get_active_object)
|
||||
{ NULL, NULL, NULL }
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ com_dotnet_module_entry
|
||||
|
@ -697,7 +697,7 @@ static const zend_function_entry com_persist_helper_methods[] = {
|
||||
CPH_ME(InitNew, NULL)
|
||||
CPH_ME(LoadFromStream, NULL)
|
||||
CPH_ME(SaveToStream, NULL)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
static void helper_free_storage(void *obj TSRMLS_DC)
|
||||
|
@ -106,7 +106,7 @@ static const zend_function_entry ctype_functions[] = {
|
||||
PHP_FE(ctype_space, arginfo_ctype_space)
|
||||
PHP_FE(ctype_upper, arginfo_ctype_upper)
|
||||
PHP_FE(ctype_xdigit, arginfo_ctype_xdigit)
|
||||
{NULL, NULL, NULL} /* Must be the last line in ctype_functions[] */
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -307,7 +307,7 @@ const zend_function_entry curl_functions[] = {
|
||||
PHP_FE(curl_multi_getcontent, arginfo_curl_multi_getcontent)
|
||||
PHP_FE(curl_multi_info_read, arginfo_curl_multi_info_read)
|
||||
PHP_FE(curl_multi_close, arginfo_curl_multi_close)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -425,7 +425,7 @@ const zend_function_entry date_functions[] = {
|
||||
PHP_FE(date_sunrise, arginfo_date_sunrise)
|
||||
PHP_FE(date_sunset, arginfo_date_sunset)
|
||||
PHP_FE(date_sun_info, arginfo_date_sun_info)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
const zend_function_entry date_funcs_date[] = {
|
||||
@ -447,7 +447,7 @@ const zend_function_entry date_funcs_date[] = {
|
||||
PHP_ME_MAPPING(setTimestamp, date_timestamp_set, arginfo_date_method_timestamp_set, 0)
|
||||
PHP_ME_MAPPING(getTimestamp, date_timestamp_get, arginfo_date_method_timestamp_get, 0)
|
||||
PHP_ME_MAPPING(diff, date_diff, arginfo_date_method_diff, 0)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
const zend_function_entry date_funcs_timezone[] = {
|
||||
@ -458,19 +458,19 @@ const zend_function_entry date_funcs_timezone[] = {
|
||||
PHP_ME_MAPPING(getLocation, timezone_location_get, arginfo_timezone_method_location_get, 0)
|
||||
PHP_ME_MAPPING(listAbbreviations, timezone_abbreviations_list, arginfo_timezone_abbreviations_list, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
|
||||
PHP_ME_MAPPING(listIdentifiers, timezone_identifiers_list, arginfo_timezone_identifiers_list, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
const zend_function_entry date_funcs_interval[] = {
|
||||
PHP_ME(DateInterval, __construct, arginfo_date_interval_construct, ZEND_ACC_CTOR|ZEND_ACC_PUBLIC)
|
||||
PHP_ME_MAPPING(format, date_interval_format, arginfo_date_method_interval_format, 0)
|
||||
PHP_ME_MAPPING(createFromDateString, date_interval_create_from_date_string, arginfo_date_interval_create_from_date_string, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
const zend_function_entry date_funcs_period[] = {
|
||||
PHP_ME(DatePeriod, __construct, arginfo_date_period_construct, ZEND_ACC_CTOR|ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
static char* guess_timezone(const timelib_tzdb *tzdb TSRMLS_DC);
|
||||
|
@ -145,7 +145,7 @@ const zend_function_entry dba_functions[] = {
|
||||
PHP_FE(dba_handlers, arginfo_dba_handlers)
|
||||
PHP_FE(dba_list, arginfo_dba_list)
|
||||
PHP_FE(dba_key_split, arginfo_dba_key_split)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -49,7 +49,7 @@ ZEND_END_ARG_INFO();
|
||||
const zend_function_entry php_dom_attr_class_functions[] = {
|
||||
PHP_FALIAS(isId, dom_attr_is_id, arginfo_dom_attr_is_id)
|
||||
PHP_ME(domattr, __construct, arginfo_dom_attr_construct, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ proto void DOMAttr::__construct(string name, [string value]); */
|
||||
|
@ -43,7 +43,7 @@ ZEND_END_ARG_INFO();
|
||||
|
||||
const zend_function_entry php_dom_cdatasection_class_functions[] = {
|
||||
PHP_ME(domcdatasection, __construct, arginfo_dom_cdatasection_construct, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ proto void DOMCdataSection::__construct(string value); */
|
||||
|
@ -68,7 +68,7 @@ const zend_function_entry php_dom_characterdata_class_functions[] = {
|
||||
PHP_FALIAS(insertData, dom_characterdata_insert_data, arginfo_dom_characterdata_insert_data)
|
||||
PHP_FALIAS(deleteData, dom_characterdata_delete_data, arginfo_dom_characterdata_delete_data)
|
||||
PHP_FALIAS(replaceData, dom_characterdata_replace_data, arginfo_dom_characterdata_replace_data)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ data string
|
||||
|
@ -229,7 +229,7 @@ const zend_function_entry php_dom_document_class_functions[] = { /* {{{ */
|
||||
PHP_FALIAS(relaxNGValidateSource, dom_document_relaxNG_validate_xml, arginfo_dom_document_relaxNG_validate_xml)
|
||||
#endif
|
||||
PHP_ME(domdocument, registerNodeClass, arginfo_dom_document_registernodeclass, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -46,7 +46,7 @@ ZEND_END_ARG_INFO();
|
||||
const zend_function_entry php_dom_documentfragment_class_functions[] = {
|
||||
PHP_ME(domdocumentfragment, __construct, arginfo_dom_documentfragement_construct, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(domdocumentfragment, appendXML, arginfo_dom_documentfragement_appendXML, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ proto void DOMDocumentFragment::__construct(); */
|
||||
|
@ -35,7 +35,7 @@
|
||||
*/
|
||||
|
||||
const zend_function_entry php_dom_documenttype_class_functions[] = {
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ name string
|
||||
|
@ -54,7 +54,7 @@ const zend_function_entry php_dom_domconfiguration_class_functions[] = {
|
||||
PHP_FALIAS(setParameter, dom_domconfiguration_set_parameter, arginfo_dom_configuration_set_parameter)
|
||||
PHP_FALIAS(getParameter, dom_domconfiguration_get_parameter, arginfo_dom_configuration_get_parameter)
|
||||
PHP_FALIAS(canSetParameter, dom_domconfiguration_can_set_parameter, arginfo_dom_configuration_can_set_parameter)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ attribute protos, not implemented yet */
|
||||
|
@ -36,7 +36,7 @@
|
||||
*/
|
||||
|
||||
const zend_function_entry php_dom_domerror_class_functions[] = {
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ attribute protos, not implemented yet */
|
||||
|
@ -42,7 +42,7 @@ ZEND_END_ARG_INFO();
|
||||
|
||||
const zend_function_entry php_dom_domerrorhandler_class_functions[] = {
|
||||
PHP_FALIAS(handleError, dom_domerrorhandler_handle_error, arginfo_dom_domerrorhandler_handle_error)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ attribute protos, not implemented yet */
|
||||
|
@ -37,7 +37,7 @@
|
||||
extern zend_class_entry *dom_domexception_class_entry;
|
||||
|
||||
const zend_function_entry php_dom_domexception_class_functions[] = {
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
void php_dom_throw_error_with_message(int error_code, char *error_message, int strict_error TSRMLS_DC) /* {{{ */
|
||||
|
@ -61,7 +61,7 @@ const zend_function_entry php_dom_domimplementation_class_functions[] = {
|
||||
PHP_ME(domimplementation, hasFeature, arginfo_dom_implementation_has_feature, ZEND_ACC_PUBLIC|ZEND_ACC_ALLOW_STATIC)
|
||||
PHP_ME(domimplementation, createDocumentType, arginfo_dom_implementation_create_documenttype, ZEND_ACC_PUBLIC|ZEND_ACC_ALLOW_STATIC)
|
||||
PHP_ME(domimplementation, createDocument, arginfo_dom_implementation_create_document, ZEND_ACC_PUBLIC|ZEND_ACC_ALLOW_STATIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ proto boolean dom_domimplementation_has_feature(string feature, string version);
|
||||
|
@ -48,7 +48,7 @@ ZEND_END_ARG_INFO();
|
||||
const zend_function_entry php_dom_domimplementationsource_class_functions[] = {
|
||||
PHP_FALIAS(getDomimplementation, dom_domimplementationsource_get_domimplementation, arginfo_dom_implementationsource_getdomimplementation)
|
||||
PHP_FALIAS(getDomimplementations, dom_domimplementationsource_get_domimplementations, arginfo_dom_implementationsource_getdomimplementations)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ attribute protos, not implemented yet */
|
||||
|
@ -36,7 +36,7 @@
|
||||
*/
|
||||
|
||||
const zend_function_entry php_dom_domlocator_class_functions[] = {
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ attribute protos, not implemented yet */
|
||||
|
@ -42,7 +42,7 @@ ZEND_END_ARG_INFO();
|
||||
|
||||
const zend_function_entry php_dom_domstringlist_class_functions[] = {
|
||||
PHP_FALIAS(item, dom_domstringlist_item, arginfo_dom_stringlist_item)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ attribute protos, not implemented yet */
|
||||
|
@ -146,7 +146,7 @@ const zend_function_entry php_dom_element_class_functions[] = { /* {{{ */
|
||||
PHP_FALIAS(setIdAttributeNS, dom_element_set_id_attribute_ns, arginfo_dom_element_set_id_attribute_ns)
|
||||
PHP_FALIAS(setIdAttributeNode, dom_element_set_id_attribute_node, arginfo_dom_element_set_id_attribute_node)
|
||||
PHP_ME(domelement, __construct, arginfo_dom_element_construct, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -36,7 +36,7 @@
|
||||
*/
|
||||
|
||||
const zend_function_entry php_dom_entity_class_functions[] = {
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ publicId string
|
||||
|
@ -42,7 +42,7 @@ ZEND_END_ARG_INFO();
|
||||
|
||||
const zend_function_entry php_dom_entityreference_class_functions[] = {
|
||||
PHP_ME(domentityreference, __construct, arginfo_dom_entityreference_construct, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ proto void DOMEntityReference::__construct(string name); */
|
||||
|
@ -74,7 +74,7 @@ const zend_function_entry php_dom_namednodemap_class_functions[] = { /* {{{ */
|
||||
PHP_FALIAS(getNamedItemNS, dom_namednodemap_get_named_item_ns, arginfo_dom_namednodemap_get_named_item_ns)
|
||||
PHP_FALIAS(setNamedItemNS, dom_namednodemap_set_named_item_ns, arginfo_dom_namednodemap_set_named_item_ns)
|
||||
PHP_FALIAS(removeNamedItemNS, dom_namednodemap_remove_named_item_ns, arginfo_dom_namednodemap_remove_named_item_ns)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -47,7 +47,7 @@ ZEND_END_ARG_INFO();
|
||||
const zend_function_entry php_dom_namelist_class_functions[] = {
|
||||
PHP_FALIAS(getName, dom_namelist_get_name, arginfo_dom_namelist_get_name)
|
||||
PHP_FALIAS(getNamespaceURI, dom_namelist_get_namespace_uri, arginfo_dom_namelist_get_namespace_uri)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ length int
|
||||
|
@ -155,7 +155,7 @@ const zend_function_entry php_dom_node_class_functions[] = { /* {{{ */
|
||||
PHP_ME(domnode, getLineNo, arginfo_dom_node_getLineNo, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(domnode, C14N, arginfo_dom_node_C14N, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(domnode, C14NFile, arginfo_dom_node_C14NFile, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -43,7 +43,7 @@ ZEND_END_ARG_INFO();
|
||||
|
||||
const zend_function_entry php_dom_nodelist_class_functions[] = {
|
||||
PHP_FALIAS(item, dom_nodelist_item, arginfo_dom_nodelist_item)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ length int
|
||||
|
@ -35,7 +35,7 @@
|
||||
*/
|
||||
|
||||
const zend_function_entry php_dom_notation_class_functions[] = {
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ attribute protos, not implemented yet */
|
||||
|
@ -543,7 +543,7 @@ ZEND_END_ARG_INFO()
|
||||
|
||||
static const zend_function_entry dom_functions[] = {
|
||||
PHP_FE(dom_import_simplexml, arginfo_dom_import_simplexml)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
static zend_object_handlers* dom_get_obj_handlers(TSRMLS_D) {
|
||||
|
@ -44,7 +44,7 @@ ZEND_END_ARG_INFO();
|
||||
|
||||
const zend_function_entry php_dom_processinginstruction_class_functions[] = {
|
||||
PHP_ME(domprocessinginstruction, __construct, arginfo_dom_processinginstruction_construct, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ proto void DOMProcessingInstruction::__construct(string name, [string value]); */
|
||||
|
@ -47,7 +47,7 @@ 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)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ attribute protos, not implemented yet */
|
||||
|
@ -58,7 +58,7 @@ const zend_function_entry php_dom_text_class_functions[] = {
|
||||
PHP_FALIAS(isElementContentWhitespace, dom_text_is_whitespace_in_element_content, arginfo_dom_text_is_whitespace_in_element_content)
|
||||
PHP_FALIAS(replaceWholeText, dom_text_replace_whole_text, arginfo_dom_text_replace_whole_text)
|
||||
PHP_ME(domtext, __construct, arginfo_dom_text_construct, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ proto void DOMText::__construct([string value]); */
|
||||
|
@ -36,7 +36,7 @@
|
||||
*/
|
||||
|
||||
const zend_function_entry php_dom_typeinfo_class_functions[] = {
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ attribute protos, not implemented yet */
|
||||
|
@ -37,7 +37,7 @@
|
||||
|
||||
const zend_function_entry php_dom_userdatahandler_class_functions[] = {
|
||||
PHP_FALIAS(handle, dom_userdatahandler_handle, NULL)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ attribute protos, not implemented yet */
|
||||
|
@ -68,7 +68,7 @@ const zend_function_entry php_dom_xpath_class_functions[] = {
|
||||
PHP_FALIAS(query, dom_xpath_query, arginfo_dom_xpath_query)
|
||||
PHP_FALIAS(evaluate, dom_xpath_evaluate, arginfo_dom_xpath_evaluate)
|
||||
PHP_FALIAS(registerPhpFunctions, dom_xpath_register_php_functions, arginfo_dom_xpath_register_php_functions)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
|
||||
|
@ -146,8 +146,7 @@ function_entry enchant_functions[] = {
|
||||
PHP_FE(enchant_dict_get_error, arginfo_enchant_broker_free_dict)
|
||||
PHP_FE(enchant_dict_describe, arginfo_enchant_broker_free_dict)
|
||||
PHP_FE(enchant_dict_quick_check, arginfo_enchant_dict_quick_check)
|
||||
|
||||
{NULL, NULL, NULL} /* Must be the last line in enchant_functions[] */
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -59,7 +59,7 @@ const zend_function_entry ereg_functions[] = {
|
||||
PHP_DEP_FE(split, arginfo_split)
|
||||
PHP_DEP_FE(spliti, arginfo_split)
|
||||
PHP_DEP_FE(sql_regcase, arginfo_sql_regcase)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -144,7 +144,7 @@ const zend_function_entry exif_functions[] = {
|
||||
PHP_FE(exif_tagname, arginfo_exif_tagname)
|
||||
PHP_FE(exif_thumbnail, arginfo_exif_thumbnail)
|
||||
PHP_FE(exif_imagetype, arginfo_exif_imagetype)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -172,7 +172,7 @@ zend_function_entry finfo_class_functions[] = {
|
||||
ZEND_ME_MAPPING(set_flags, finfo_set_flags,arginfo_finfo_method_set_flags, ZEND_ACC_PUBLIC)
|
||||
ZEND_ME_MAPPING(file, finfo_file, arginfo_finfo_method_file, ZEND_ACC_PUBLIC)
|
||||
ZEND_ME_MAPPING(buffer, finfo_buffer, arginfo_finfo_method_buffer, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -128,7 +128,7 @@ static const zend_function_entry filter_functions[] = {
|
||||
PHP_FE(filter_list, arginfo_filter_list)
|
||||
PHP_FE(filter_has_var, arginfo_filter_has_var)
|
||||
PHP_FE(filter_id, arginfo_filter_id)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -278,7 +278,7 @@ const zend_function_entry php_ftp_functions[] = {
|
||||
PHP_FE(ftp_nb_put, arginfo_ftp_nb_put)
|
||||
PHP_FE(ftp_nb_fput, arginfo_ftp_nb_fput)
|
||||
PHP_FALIAS(ftp_quit, ftp_close, arginfo_ftp_close)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
zend_module_entry php_ftp_module_entry = {
|
||||
|
@ -1045,7 +1045,7 @@ const zend_function_entry gd_functions[] = {
|
||||
PHP_FE(imagefilter, arginfo_imagefilter)
|
||||
PHP_FE(imageconvolution, arginfo_imageconvolution)
|
||||
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -112,7 +112,7 @@ const zend_function_entry php_gettext_functions[] = {
|
||||
#if HAVE_BIND_TEXTDOMAIN_CODESET
|
||||
PHP_NAMED_FE(bind_textdomain_codeset, zif_bind_textdomain_codeset, arginfo_bind_textdomain_codeset)
|
||||
#endif
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -280,7 +280,7 @@ const zend_function_entry gmp_functions[] = {
|
||||
ZEND_FE(gmp_popcount, arginfo_gmp_popcount)
|
||||
ZEND_FE(gmp_hamdist, arginfo_gmp_hamdist)
|
||||
ZEND_FE(gmp_nextprime, arginfo_gmp_nextprime)
|
||||
{NULL, NULL, NULL} /* Must be the last line in gmp_functions[] */
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -1060,7 +1060,7 @@ const zend_function_entry hash_functions[] = {
|
||||
PHP_FE(mhash, arginfo_mhash)
|
||||
#endif
|
||||
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -142,7 +142,7 @@ const zend_function_entry iconv_functions[] = {
|
||||
PHP_FE(iconv_mime_encode, arginfo_iconv_mime_encode)
|
||||
PHP_FE(iconv_mime_decode, arginfo_iconv_mime_decode)
|
||||
PHP_FE(iconv_mime_decode_headers, arginfo_iconv_mime_decode_headers)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -551,7 +551,7 @@ const zend_function_entry imap_functions[] = {
|
||||
PHP_FALIAS(imap_scan, imap_listscan, arginfo_imap_listscan)
|
||||
PHP_FALIAS(imap_create, imap_createmailbox, arginfo_imap_createmailbox)
|
||||
PHP_FALIAS(imap_rename, imap_renamemailbox, arginfo_imap_renamemailbox)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -441,7 +441,7 @@ const zend_function_entry ibase_functions[] = {
|
||||
PHP_FALIAS(fbird_wait_event, ibase_wait_event, arginfo_ibase_wait_event)
|
||||
PHP_FALIAS(fbird_set_event_handler, ibase_set_event_handler, arginfo_ibase_set_event_handler)
|
||||
PHP_FALIAS(fbird_free_event_handler, ibase_free_event_handler, arginfo_ibase_free_event_handler)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
zend_module_entry ibase_module_entry = {
|
||||
|
@ -487,7 +487,7 @@ zend_function_entry intl_functions[] = {
|
||||
PHP_FE( intl_is_failure, intl_1_arg )
|
||||
PHP_FE( intl_error_name, intl_1_arg )
|
||||
|
||||
{ NULL, NULL, NULL }
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -60,7 +60,7 @@ static const function_entry json_functions[] = {
|
||||
PHP_FE(json_encode, arginfo_json_encode)
|
||||
PHP_FE(json_decode, arginfo_json_decode)
|
||||
PHP_FE(json_last_error, arginfo_json_last_error)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -2506,7 +2506,7 @@ const zend_function_entry ldap_functions[] = {
|
||||
PHP_FE(ldap_8859_to_t61, arginfo_ldap_8859_to_t61)
|
||||
#endif
|
||||
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -119,7 +119,7 @@ static const zend_function_entry libxml_functions[] = {
|
||||
PHP_FE(libxml_clear_errors, arginfo_libxml_clear_errors)
|
||||
PHP_FE(libxml_get_errors, arginfo_libxml_get_errors)
|
||||
PHP_FE(libxml_disable_entity_loader, arginfo_libxml_disable_entity_loader)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
zend_module_entry libxml_module_entry = {
|
||||
|
@ -557,7 +557,7 @@ const zend_function_entry mbstring_functions[] = {
|
||||
#if HAVE_MBREGEX
|
||||
PHP_MBREGEX_FUNCTION_ENTRIES
|
||||
#endif
|
||||
{ NULL, NULL, NULL }
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -280,7 +280,7 @@ const zend_function_entry mcrypt_functions[] = { /* {{{ */
|
||||
PHP_FE(mcrypt_module_get_supported_key_sizes, arginfo_mcrypt_module_get_supported_key_sizes)
|
||||
|
||||
PHP_FE(mcrypt_module_close, arginfo_mcrypt_module_close)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -178,7 +178,7 @@ const zend_function_entry mssql_functions[] = {
|
||||
PHP_FE(mssql_execute, arginfo_mssql_execute)
|
||||
PHP_FE(mssql_free_statement, arginfo_mssql_free_statement)
|
||||
PHP_FE(mssql_guid_string, arginfo_mssql_guid_string)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -320,7 +320,7 @@ static const zend_function_entry mysql_functions[] = {
|
||||
PHP_FALIAS(mysql_dbname, mysql_result, arginfo_mysql_result)
|
||||
PHP_FALIAS(mysql_tablename, mysql_result, arginfo_mysql_result)
|
||||
PHP_FALIAS(mysql_table_name, mysql_result, arginfo_mysql_result)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -468,7 +468,7 @@ const zend_function_entry mysqli_functions[] = {
|
||||
PHP_FALIAS(mysqli_send_long_data, mysqli_stmt_send_long_data, NULL)
|
||||
PHP_FALIAS(mysqli_set_opt, mysqli_options, NULL)
|
||||
|
||||
{NULL, NULL, NULL} /* Must be the last line in mysqli_functions[] */
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -31,7 +31,7 @@
|
||||
* Every user visible function must have an entry in mysqlnd_functions[].
|
||||
*/
|
||||
static zend_function_entry mysqlnd_functions[] = {
|
||||
{NULL, NULL, NULL} /* Must be the last line in mysqlnd_functions[] */
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -937,7 +937,7 @@ zend_function_entry php_oci_functions[] = {
|
||||
PHP_FALIAS(ocicollsize, oci_collection_size, arginfo_oci_collection_size)
|
||||
PHP_FALIAS(ocicollmax, oci_collection_max, arginfo_oci_collection_max)
|
||||
PHP_FALIAS(ocicolltrim, oci_collection_trim, arginfo_oci_collection_trim)
|
||||
{NULL,NULL,NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
static
|
||||
@ -968,7 +968,7 @@ zend_function_entry php_oci_lob_class_functions[] = {
|
||||
PHP_FALIAS(save, oci_lob_save, arginfo_oci_lob_save_method)
|
||||
PHP_FALIAS(savefile, oci_lob_import, arginfo_oci_lob_import_method)
|
||||
PHP_FALIAS(free, oci_free_descriptor, arginfo_oci_free_descriptor_method)
|
||||
{NULL,NULL,NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
static
|
||||
@ -985,7 +985,7 @@ zend_function_entry php_oci_coll_class_functions[] = {
|
||||
PHP_FALIAS(max, oci_collection_max, arginfo_oci_collection_max_method)
|
||||
PHP_FALIAS(trim, oci_collection_trim, arginfo_oci_collection_trim_method)
|
||||
PHP_FALIAS(free, oci_free_collection, arginfo_oci_collection_free_method)
|
||||
{NULL,NULL,NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
zend_module_entry oci8_module_entry = {
|
||||
|
@ -383,7 +383,7 @@ const zend_function_entry odbc_functions[] = {
|
||||
#endif
|
||||
PHP_FALIAS(odbc_do, odbc_exec, arginfo_odbc_exec)
|
||||
PHP_FALIAS(odbc_field_precision, odbc_field_len, arginfo_odbc_field_len)
|
||||
{ NULL, NULL, NULL }
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -439,7 +439,7 @@ const zend_function_entry openssl_functions[] = {
|
||||
|
||||
PHP_FE(openssl_random_pseudo_bytes, arginfo_openssl_random_pseudo_bytes)
|
||||
PHP_FE(openssl_error_string, arginfo_openssl_error_string)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -172,7 +172,7 @@ const zend_function_entry pcntl_functions[] = {
|
||||
PHP_FE(pcntl_sigwaitinfo, arginfo_pcntl_sigwaitinfo)
|
||||
PHP_FE(pcntl_sigtimedwait, arginfo_pcntl_sigtimedwait)
|
||||
#endif
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
zend_module_entry pcntl_module_entry = {
|
||||
|
@ -1894,7 +1894,7 @@ static const zend_function_entry pcre_functions[] = {
|
||||
PHP_FE(preg_quote, arginfo_preg_quote)
|
||||
PHP_FE(preg_grep, arginfo_preg_grep)
|
||||
PHP_FE(preg_last_error, arginfo_preg_last_error)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
zend_module_entry pcre_module_entry = {
|
||||
|
@ -125,7 +125,7 @@ ZEND_END_ARG_INFO()
|
||||
/* {{{ pdo_functions[] */
|
||||
const zend_function_entry pdo_functions[] = {
|
||||
PHP_FE(pdo_drivers, arginfo_pdo_drivers)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -36,7 +36,7 @@ ZEND_DECLARE_MODULE_GLOBALS(dblib)
|
||||
static PHP_GINIT_FUNCTION(dblib);
|
||||
|
||||
const zend_function_entry pdo_dblib_functions[] = {
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
#if ZEND_MODULE_API_NO >= 20050922
|
||||
|
@ -31,7 +31,7 @@
|
||||
#include "php_pdo_firebird_int.h"
|
||||
|
||||
const zend_function_entry pdo_firebird_functions[] = { /* {{{ */
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -170,7 +170,7 @@ static PHP_GINIT_FUNCTION(pdo_mysql)
|
||||
|
||||
/* {{{ pdo_mysql_functions[] */
|
||||
const zend_function_entry pdo_mysql_functions[] = {
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -32,7 +32,7 @@
|
||||
|
||||
/* {{{ pdo_oci_functions[] */
|
||||
const zend_function_entry pdo_oci_functions[] = {
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -975,7 +975,7 @@ static const zend_function_entry dbh_methods[] = {
|
||||
PHP_ME(PDO, pgsqlCopyFromFile, NULL, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(PDO, pgsqlCopyToArray, NULL, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(PDO, pgsqlCopyToFile, NULL, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
static const zend_function_entry *pdo_pgsql_get_driver_methods(pdo_dbh_t *dbh, int kind TSRMLS_DC)
|
||||
|
@ -35,7 +35,7 @@
|
||||
|
||||
/* {{{ pdo_sqlite_functions[] */
|
||||
const zend_function_entry pdo_sqlite_functions[] = {
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -593,7 +593,7 @@ static PHP_METHOD(SQLite, sqliteCreateAggregate)
|
||||
static const zend_function_entry dbh_methods[] = {
|
||||
PHP_ME(SQLite, sqliteCreateFunction, NULL, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(SQLite, sqliteCreateAggregate, NULL, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
static const zend_function_entry *get_driver_methods(pdo_dbh_t *dbh, int kind TSRMLS_DC)
|
||||
|
@ -697,7 +697,7 @@ const zend_function_entry pgsql_functions[] = {
|
||||
PHP_FALIAS(pg_clientencoding, pg_client_encoding, arginfo_pg_client_encoding)
|
||||
PHP_FALIAS(pg_setclientencoding, pg_set_client_encoding, arginfo_pg_set_client_encoding)
|
||||
#endif
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -3292,8 +3292,8 @@ ZEND_GET_MODULE(phar)
|
||||
*
|
||||
* Every user visible function must have an entry in phar_functions[].
|
||||
*/
|
||||
function_entry phar_functions[] = {
|
||||
{NULL, NULL, NULL} /* Must be the last line in phar_functions[] */
|
||||
zend_function_entry phar_functions[] = {
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}}*/
|
||||
|
||||
|
@ -1144,7 +1144,7 @@ PHP_METHOD(Phar, loadPhar)
|
||||
RETVAL_BOOL(phar_open_from_filename(fname, fname_len, alias, alias_len, REPORT_ERRORS, NULL, &error TSRMLS_CC) == SUCCESS);
|
||||
|
||||
if (error) {
|
||||
zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
|
||||
zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, error);
|
||||
efree(error);
|
||||
}
|
||||
} /* }}} */
|
||||
@ -5484,7 +5484,7 @@ zend_function_entry php_archive_methods[] = {
|
||||
PHP_ME(Phar, mungServer, arginfo_phar_mungServer, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC|ZEND_ACC_FINAL)
|
||||
PHP_ME(Phar, unlinkArchive, arginfo_phar_ua, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC|ZEND_ACC_FINAL)
|
||||
PHP_ME(Phar, webPhar, arginfo_phar_webPhar, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC|ZEND_ACC_FINAL)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
#if HAVE_SPL
|
||||
@ -5514,12 +5514,12 @@ zend_function_entry php_entry_methods[] = {
|
||||
PHP_ME(PharFileInfo, isCompressed, arginfo_phar_compo, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(PharFileInfo, isCRCChecked, arginfo_phar__void, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(PharFileInfo, setMetadata, arginfo_phar_setMetadata, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
#endif /* HAVE_SPL */
|
||||
|
||||
zend_function_entry phar_exception_methods[] = {
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -301,7 +301,7 @@ const zend_function_entry posix_functions[] = {
|
||||
PHP_FE(posix_initgroups, arginfo_posix_initgroups)
|
||||
#endif
|
||||
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -198,7 +198,7 @@ static const zend_function_entry pspell_functions[] = {
|
||||
PHP_FE(pspell_config_data_dir, arginfo_pspell_config_data_dir)
|
||||
PHP_FE(pspell_config_repl, arginfo_pspell_config_repl)
|
||||
PHP_FE(pspell_config_save_repl, arginfo_pspell_config_save_repl)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -143,7 +143,7 @@ static const zend_function_entry php_readline_functions[] = {
|
||||
PHP_FE(readline_redisplay, arginfo_readline_redisplay)
|
||||
PHP_FE(readline_on_new_line, arginfo_readline_on_new_line)
|
||||
#endif
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
zend_module_entry readline_module_entry = {
|
||||
|
@ -84,7 +84,7 @@ static const zend_function_entry php_recode_functions[] = {
|
||||
PHP_FE(recode_string, arginfo_recode_string)
|
||||
PHP_FE(recode_file, arginfo_recode_file)
|
||||
PHP_FALIAS(recode, recode_string, arginfo_recode_string)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
zend_module_entry recode_module_entry = {
|
||||
|
@ -5067,7 +5067,7 @@ ZEND_METHOD(reflection_extension, info)
|
||||
|
||||
/* {{{ method tables */
|
||||
static const zend_function_entry reflection_exception_functions[] = {
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
ZEND_BEGIN_ARG_INFO(arginfo_reflection__void, 0)
|
||||
@ -5086,13 +5086,13 @@ ZEND_END_ARG_INFO()
|
||||
static const zend_function_entry reflection_functions[] = {
|
||||
ZEND_ME(reflection, getModifierNames, arginfo_reflection_getModifierNames, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
|
||||
ZEND_ME(reflection, export, arginfo_reflection_export, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
static const zend_function_entry reflector_functions[] = {
|
||||
ZEND_FENTRY(export, NULL, NULL, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
|
||||
ZEND_ABSTRACT_ME(reflector, __toString, arginfo_reflection__void)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_reflection_function_export, 0, 0, 1)
|
||||
@ -5134,7 +5134,7 @@ static const zend_function_entry reflection_function_abstract_functions[] = {
|
||||
ZEND_ME(reflection_function, getStartLine, arginfo_reflection__void, 0)
|
||||
ZEND_ME(reflection_function, getStaticVariables, arginfo_reflection__void, 0)
|
||||
ZEND_ME(reflection_function, returnsReference, arginfo_reflection__void, 0)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
static const zend_function_entry reflection_function_functions[] = {
|
||||
@ -5144,7 +5144,7 @@ static const zend_function_entry reflection_function_functions[] = {
|
||||
ZEND_ME(reflection_function, isDisabled, arginfo_reflection__void, 0)
|
||||
ZEND_ME(reflection_function, invoke, arginfo_reflection_function_invoke, 0)
|
||||
ZEND_ME(reflection_function, invokeArgs, arginfo_reflection_function_invokeArgs, 0)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_reflection_method_export, 0, 0, 2)
|
||||
@ -5190,7 +5190,7 @@ static const zend_function_entry reflection_method_functions[] = {
|
||||
ZEND_ME(reflection_method, getDeclaringClass, arginfo_reflection__void, 0)
|
||||
ZEND_ME(reflection_method, getPrototype, arginfo_reflection__void, 0)
|
||||
ZEND_ME(reflection_property, setAccessible, arginfo_reflection_method_setAccessible, 0)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
|
||||
@ -5310,7 +5310,7 @@ static const zend_function_entry reflection_class_functions[] = {
|
||||
ZEND_ME(reflection_class, inNamespace, arginfo_reflection__void, 0)
|
||||
ZEND_ME(reflection_class, getNamespaceName, arginfo_reflection__void, 0)
|
||||
ZEND_ME(reflection_class, getShortName, arginfo_reflection__void, 0)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
|
||||
@ -5326,7 +5326,7 @@ ZEND_END_ARG_INFO()
|
||||
static const zend_function_entry reflection_object_functions[] = {
|
||||
ZEND_ME(reflection_object, export, arginfo_reflection_object_export, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
|
||||
ZEND_ME(reflection_object, __construct, arginfo_reflection_object___construct, 0)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
|
||||
@ -5371,7 +5371,7 @@ static const zend_function_entry reflection_property_functions[] = {
|
||||
ZEND_ME(reflection_property, getDeclaringClass, arginfo_reflection__void, 0)
|
||||
ZEND_ME(reflection_property, getDocComment, arginfo_reflection__void, 0)
|
||||
ZEND_ME(reflection_property, setAccessible, arginfo_reflection_property_setAccessible, 0)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_reflection_parameter_export, 0, 0, 2)
|
||||
@ -5401,7 +5401,7 @@ static const zend_function_entry reflection_parameter_functions[] = {
|
||||
ZEND_ME(reflection_parameter, isOptional, arginfo_reflection__void, 0)
|
||||
ZEND_ME(reflection_parameter, isDefaultValueAvailable, arginfo_reflection__void, 0)
|
||||
ZEND_ME(reflection_parameter, getDefaultValue, arginfo_reflection__void, 0)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_reflection_extension_export, 0, 0, 1)
|
||||
@ -5427,12 +5427,12 @@ static const zend_function_entry reflection_extension_functions[] = {
|
||||
ZEND_ME(reflection_extension, getClassNames, arginfo_reflection__void, 0)
|
||||
ZEND_ME(reflection_extension, getDependencies, arginfo_reflection__void, 0)
|
||||
ZEND_ME(reflection_extension, info, arginfo_reflection__void, 0)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
const zend_function_entry reflection_ext_functions[] = { /* {{{ */
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
}; /* }}} */
|
||||
|
||||
static zend_object_handlers *zend_std_obj_handlers;
|
||||
|
@ -2119,7 +2119,7 @@ static const zend_function_entry session_functions[] = {
|
||||
PHP_FE(session_get_cookie_params, arginfo_session_void)
|
||||
PHP_FE(session_write_close, arginfo_session_void)
|
||||
PHP_FALIAS(session_commit, session_write_close, arginfo_session_void)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -87,7 +87,7 @@ const zend_function_entry shmop_functions[] = {
|
||||
PHP_FE(shmop_size, arginfo_shmop_size)
|
||||
PHP_FE(shmop_write, arginfo_shmop_write)
|
||||
PHP_FE(shmop_delete, arginfo_shmop_delete)
|
||||
{NULL, NULL, NULL} /* Must be the last line in shmop_functions[] */
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -2516,7 +2516,7 @@ const zend_function_entry simplexml_functions[] = { /* {{{ */
|
||||
PHP_FE(simplexml_load_file, arginfo_simplexml_load_file)
|
||||
PHP_FE(simplexml_load_string, arginfo_simplexml_load_string)
|
||||
PHP_FE(simplexml_import_dom, arginfo_simplexml_import_dom)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
@ -2563,7 +2563,7 @@ static const zend_function_entry sxe_functions[] = { /* {{{ */
|
||||
SXE_ME(addAttribute, arginfo_simplexmlelement_addchild, ZEND_ACC_PUBLIC)
|
||||
SXE_ME(__toString, arginfo_simplexmlelement__void, ZEND_ACC_PUBLIC)
|
||||
SXE_ME(count, arginfo_simplexmlelement__void, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -23,7 +23,7 @@ static int le_extname;
|
||||
const zend_function_entry extname_functions[] = {
|
||||
PHP_FE(confirm_extname_compiled, NULL) /* For testing, remove later. */
|
||||
/* __function_entries_here__ */
|
||||
{NULL, NULL, NULL} /* Must be the last line in extname_functions[] */
|
||||
PHP_FE_END /* Must be the last line in extname_functions[] */
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -331,7 +331,7 @@ const zend_function_entry snmp_functions[] = {
|
||||
PHP_FE(snmp_get_valueretrieval, arginfo_snmp_get_valueretrieval)
|
||||
|
||||
PHP_FE(snmp_read_mib, arginfo_snmp_read_mib)
|
||||
{NULL,NULL,NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -460,7 +460,7 @@ unsigned char arginfo_soapclient___soapcall[] = { 5, BYREF_NONE, BYREF_NONE, BYR
|
||||
static const zend_function_entry soap_functions[] = {
|
||||
PHP_FE(use_soap_error_handler, arginfo_soap_use_soap_error_handler)
|
||||
PHP_FE(is_soap_fault, arginfo_soap_is_soap_fault)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
static const zend_function_entry soap_fault_functions[] = {
|
||||
@ -468,7 +468,7 @@ static const zend_function_entry soap_fault_functions[] = {
|
||||
#ifdef ZEND_ENGINE_2
|
||||
PHP_ME(SoapFault, __toString, arginfo_soap__void, 0)
|
||||
#endif
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
static const zend_function_entry soap_server_functions[] = {
|
||||
@ -481,7 +481,7 @@ static const zend_function_entry soap_server_functions[] = {
|
||||
PHP_ME(SoapServer, handle, arginfo_soapserver_handle, 0)
|
||||
PHP_ME(SoapServer, fault, arginfo_soapserver_fault, 0)
|
||||
PHP_ME(SoapServer, addSoapHeader, arginfo_soapserver_addsoapheader, 0)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
static const zend_function_entry soap_client_functions[] = {
|
||||
@ -498,22 +498,22 @@ static const zend_function_entry soap_client_functions[] = {
|
||||
PHP_ME(SoapClient, __setCookie, arginfo_soapclient___setcookie, 0)
|
||||
PHP_ME(SoapClient, __setLocation, arginfo_soapclient___setlocation, 0)
|
||||
PHP_ME(SoapClient, __setSoapHeaders, arginfo_soapclient___setsoapheaders, 0)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
static const zend_function_entry soap_var_functions[] = {
|
||||
SOAP_CTOR(SoapVar, SoapVar, arginfo_soapvar_soapvar, 0)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
static const zend_function_entry soap_param_functions[] = {
|
||||
SOAP_CTOR(SoapParam, SoapParam, arginfo_soapparam_soapparam, 0)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
static const zend_function_entry soap_header_functions[] = {
|
||||
SOAP_CTOR(SoapHeader, SoapHeader, arginfo_soapheader_soapheader, 0)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
zend_module_entry soap_module_entry = {
|
||||
|
@ -300,7 +300,7 @@ const zend_function_entry sockets_functions[] = {
|
||||
PHP_FALIAS(socket_getopt, socket_get_option, arginfo_socket_get_option)
|
||||
PHP_FALIAS(socket_setopt, socket_set_option, arginfo_socket_set_option)
|
||||
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -877,7 +877,7 @@ const zend_function_entry spl_functions[] = {
|
||||
PHP_FE(iterator_count, arginfo_iterator)
|
||||
PHP_FE(iterator_apply, arginfo_iterator_apply)
|
||||
#endif /* SPL_ITERATORS_H */
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -1929,7 +1929,7 @@ static const zend_function_entry spl_funcs_ArrayObject[] = {
|
||||
SPL_ME(Array, exchangeArray, arginfo_array_exchangeArray, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(Array, setIteratorClass, arginfo_array_setIteratorClass, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(Array, getIteratorClass, arginfo_array_void, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
static const zend_function_entry spl_funcs_ArrayIterator[] = {
|
||||
@ -1958,13 +1958,13 @@ static const zend_function_entry spl_funcs_ArrayIterator[] = {
|
||||
SPL_ME(Array, next, arginfo_array_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(Array, valid, arginfo_array_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(Array, seek, arginfo_array_seek, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
static const zend_function_entry spl_funcs_RecursiveArrayIterator[] = {
|
||||
SPL_ME(Array, hasChildren, arginfo_array_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(Array, getChildren, arginfo_array_void, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -1927,7 +1927,7 @@ static const zend_function_entry spl_SplFileInfo_functions[] = {
|
||||
SPL_ME(SplFileInfo, setInfoClass, arginfo_info_optinalFileClass, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(SplFileInfo, _bad_state_ex, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL)
|
||||
SPL_MA(SplFileInfo, __toString, SplFileInfo, getPathname, arginfo_splfileinfo_void, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
ZEND_BEGIN_ARG_INFO(arginfo_dir___construct, 0)
|
||||
@ -1953,7 +1953,7 @@ static const zend_function_entry spl_DirectoryIterator_functions[] = {
|
||||
SPL_ME(DirectoryIterator, next, arginfo_splfileinfo_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(DirectoryIterator, seek, arginfo_dir_it_seek, ZEND_ACC_PUBLIC)
|
||||
SPL_MA(DirectoryIterator, __toString, DirectoryIterator, getFilename, arginfo_splfileinfo_void, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_r_dir___construct, 0, 0, 1)
|
||||
@ -1977,7 +1977,7 @@ static const zend_function_entry spl_FilesystemIterator_functions[] = {
|
||||
SPL_ME(FilesystemIterator, current, arginfo_splfileinfo_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(FilesystemIterator, getFlags, arginfo_splfileinfo_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(FilesystemIterator, setFlags, arginfo_r_dir_setFlags, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
static const zend_function_entry spl_RecursiveDirectoryIterator_functions[] = {
|
||||
@ -1986,14 +1986,14 @@ static const zend_function_entry spl_RecursiveDirectoryIterator_functions[] = {
|
||||
SPL_ME(RecursiveDirectoryIterator, getChildren, arginfo_splfileinfo_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(RecursiveDirectoryIterator, getSubPath, arginfo_splfileinfo_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(RecursiveDirectoryIterator, getSubPathname,arginfo_splfileinfo_void, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
#ifdef HAVE_GLOB
|
||||
static const zend_function_entry spl_GlobIterator_functions[] = {
|
||||
SPL_ME(GlobIterator, __construct, arginfo_r_dir___construct, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(GlobIterator, count, arginfo_splfileinfo_void, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
#endif
|
||||
/* }}} */
|
||||
@ -2908,7 +2908,7 @@ static const zend_function_entry spl_SplFileObject_functions[] = {
|
||||
/* mappings */
|
||||
SPL_MA(SplFileObject, getCurrentLine, SplFileObject, fgets, arginfo_splfileinfo_void, ZEND_ACC_PUBLIC)
|
||||
SPL_MA(SplFileObject, __toString, SplFileObject, current, arginfo_splfileinfo_void, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_temp_file_object___construct, 0, 0, 0)
|
||||
@ -2917,7 +2917,7 @@ ZEND_END_ARG_INFO()
|
||||
|
||||
static const zend_function_entry spl_SplTempFileObject_functions[] = {
|
||||
SPL_ME(SplTempFileObject, __construct, arginfo_temp_file_object___construct, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -1191,7 +1191,7 @@ ZEND_END_ARG_INFO()
|
||||
static const zend_function_entry spl_funcs_SplQueue[] = {
|
||||
SPL_MA(SplQueue, enqueue, SplDoublyLinkedList, push, arginfo_dllist_push, ZEND_ACC_PUBLIC)
|
||||
SPL_MA(SplQueue, dequeue, SplDoublyLinkedList, shift, arginfo_dllist_void, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
static const zend_function_entry spl_funcs_SplDoublyLinkedList[] = {
|
||||
@ -1215,7 +1215,7 @@ static const zend_function_entry spl_funcs_SplDoublyLinkedList[] = {
|
||||
SPL_ME(SplDoublyLinkedList, next, arginfo_dllist_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(SplDoublyLinkedList, prev, arginfo_dllist_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(SplDoublyLinkedList, valid, arginfo_dllist_void, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -1073,7 +1073,7 @@ static zend_function_entry spl_funcs_SplFixedArray[] = { /* {{{ */
|
||||
SPL_ME(SplFixedArray, key, arginfo_splfixedarray_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(SplFixedArray, next, arginfo_splfixedarray_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(SplFixedArray, valid, arginfo_splfixedarray_void, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -67,7 +67,7 @@ ZEND_END_ARG_INFO()
|
||||
const zend_function_entry spl_funcs_RecursiveIterator[] = {
|
||||
SPL_ABSTRACT_ME(RecursiveIterator, hasChildren, arginfo_recursive_it_void)
|
||||
SPL_ABSTRACT_ME(RecursiveIterator, getChildren, arginfo_recursive_it_void)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
typedef enum {
|
||||
@ -976,7 +976,7 @@ static const zend_function_entry spl_funcs_RecursiveIteratorIterator[] = {
|
||||
SPL_ME(RecursiveIteratorIterator, nextElement, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(RecursiveIteratorIterator, setMaxDepth, arginfo_recursive_it_setMaxDepth, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(RecursiveIteratorIterator, getMaxDepth, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
static void spl_recursive_tree_iterator_get_prefix(spl_recursive_it_object *object, zval *return_value TSRMLS_DC)
|
||||
@ -1254,7 +1254,7 @@ static const zend_function_entry spl_funcs_RecursiveTreeIterator[] = {
|
||||
SPL_ME(RecursiveTreeIterator, setPrefixPart, arginfo_recursive_tree_it_setPrefixPart, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(RecursiveTreeIterator, getEntry, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(RecursiveTreeIterator, getPostfix, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
#if MBO_0
|
||||
@ -2189,7 +2189,7 @@ static const zend_function_entry spl_funcs_FilterIterator[] = {
|
||||
SPL_ME(FilterIterator, next, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(dual_it, getInnerIterator, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ABSTRACT_ME(FilterIterator, accept, arginfo_recursive_it_void)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
ZEND_BEGIN_ARG_INFO(arginfo_parent_it___construct, 0)
|
||||
@ -2200,13 +2200,13 @@ static const zend_function_entry spl_funcs_RecursiveFilterIterator[] = {
|
||||
SPL_ME(RecursiveFilterIterator, __construct, arginfo_parent_it___construct, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(RecursiveFilterIterator, hasChildren, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(RecursiveFilterIterator, getChildren, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
static const zend_function_entry spl_funcs_ParentIterator[] = {
|
||||
SPL_ME(ParentIterator, __construct, arginfo_parent_it___construct, ZEND_ACC_PUBLIC)
|
||||
SPL_MA(ParentIterator, accept, RecursiveFilterIterator, hasChildren, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
#if HAVE_PCRE || HAVE_BUNDLED_PCRE
|
||||
@ -2239,7 +2239,7 @@ static const zend_function_entry spl_funcs_RegexIterator[] = {
|
||||
SPL_ME(RegexIterator, setFlags, arginfo_regex_it_set_flags, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(RegexIterator, getPregFlags, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(RegexIterator, setPregFlags, arginfo_regex_it_set_preg_flags, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_rec_regex_it___construct, 0, 0, 2)
|
||||
@ -2254,7 +2254,7 @@ static const zend_function_entry spl_funcs_RecursiveRegexIterator[] = {
|
||||
SPL_ME(RecursiveRegexIterator, __construct, arginfo_rec_regex_it___construct, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(RecursiveFilterIterator, hasChildren, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(RecursiveRegexIterator, getChildren, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
#endif
|
||||
|
||||
@ -2383,7 +2383,7 @@ ZEND_END_ARG_INFO();
|
||||
|
||||
static const zend_function_entry spl_funcs_SeekableIterator[] = {
|
||||
SPL_ABSTRACT_ME(SeekableIterator, seek, arginfo_seekable_it_seek)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_limit_it___construct, 0, 0, 1)
|
||||
@ -2406,7 +2406,7 @@ static const zend_function_entry spl_funcs_LimitIterator[] = {
|
||||
SPL_ME(LimitIterator, seek, arginfo_limit_it_seek, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(LimitIterator, getPosition, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(dual_it, getInnerIterator, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
static inline int spl_caching_it_valid(spl_dual_it_object *intern TSRMLS_DC)
|
||||
@ -2837,7 +2837,7 @@ static const zend_function_entry spl_funcs_CachingIterator[] = {
|
||||
SPL_ME(CachingIterator, offsetExists, arginfo_caching_it_offsetGet, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(CachingIterator, getCache, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(CachingIterator, count, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ proto void RecursiveCachingIterator::__construct(RecursiveIterator it [, flags = CIT_CALL_TOSTRING])
|
||||
@ -2890,7 +2890,7 @@ static const zend_function_entry spl_funcs_RecursiveCachingIterator[] = {
|
||||
SPL_ME(RecursiveCachingIterator, __construct, arginfo_caching_rec_it___construct, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(RecursiveCachingIterator, hasChildren, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(RecursiveCachingIterator, getChildren, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ proto void IteratorIterator::__construct(Traversable it)
|
||||
@ -2912,7 +2912,7 @@ static const zend_function_entry spl_funcs_IteratorIterator[] = {
|
||||
SPL_ME(dual_it, current, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(dual_it, next, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(dual_it, getInnerIterator, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ proto void NoRewindIterator::__construct(Iterator it)
|
||||
@ -3021,7 +3021,7 @@ static const zend_function_entry spl_funcs_NoRewindIterator[] = {
|
||||
SPL_ME(NoRewindIterator, current, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(NoRewindIterator, next, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(dual_it, getInnerIterator, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ proto void InfiniteIterator::__construct(Iterator it)
|
||||
@ -3057,7 +3057,7 @@ SPL_METHOD(InfiniteIterator, next)
|
||||
static const zend_function_entry spl_funcs_InfiniteIterator[] = {
|
||||
SPL_ME(InfiniteIterator, __construct, arginfo_norewind_it___construct, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(InfiniteIterator, next, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ proto void EmptyIterator::rewind()
|
||||
@ -3114,7 +3114,7 @@ static const zend_function_entry spl_funcs_EmptyIterator[] = {
|
||||
SPL_ME(EmptyIterator, key, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(EmptyIterator, current, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(EmptyIterator, next, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
int spl_append_it_next_iterator(spl_dual_it_object *intern TSRMLS_DC) /* {{{*/
|
||||
@ -3292,7 +3292,7 @@ static const zend_function_entry spl_funcs_AppendIterator[] = {
|
||||
SPL_ME(dual_it, getInnerIterator, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(AppendIterator, getIteratorIndex, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
SPL_ME(AppendIterator, getArrayIterator, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
PHPAPI int spl_iterator_apply(zval *obj, spl_iterator_apply_func_t apply_func, void *puser TSRMLS_DC)
|
||||
@ -3484,12 +3484,12 @@ PHP_FUNCTION(iterator_apply)
|
||||
|
||||
static const zend_function_entry spl_funcs_OuterIterator[] = {
|
||||
SPL_ABSTRACT_ME(OuterIterator, getInnerIterator, arginfo_recursive_it_void)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
static const zend_function_entry spl_funcs_Countable[] = {
|
||||
SPL_ABSTRACT_ME(Countable, count, arginfo_recursive_it_void)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
/* {{{ PHP_MINIT_FUNCTION(spl_iterators)
|
||||
|
@ -1816,7 +1816,7 @@ static zend_function_entry php_sqlite3_class_methods[] = {
|
||||
PHP_ME(sqlite3, enableExceptions, argingo_sqlite3_enableexceptions, ZEND_ACC_PUBLIC)
|
||||
/* Aliases */
|
||||
PHP_MALIAS(sqlite3, __construct, open, arginfo_sqlite3_open, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
@ -1831,7 +1831,7 @@ static zend_function_entry php_sqlite3_stmt_class_methods[] = {
|
||||
PHP_ME(sqlite3stmt, bindValue, arginfo_sqlite3stmt_bindvalue, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(sqlite3stmt, readOnly, arginfo_sqlite3_void, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(sqlite3stmt, __construct, arginfo_sqlite3stmt_construct, ZEND_ACC_PRIVATE|ZEND_ACC_CTOR)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
@ -1844,7 +1844,7 @@ static zend_function_entry php_sqlite3_result_class_methods[] = {
|
||||
PHP_ME(sqlite3result, reset, arginfo_sqlite3_void, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(sqlite3result, finalize, arginfo_sqlite3_void, ZEND_ACC_PUBLIC)
|
||||
PHP_ME(sqlite3result, __construct, arginfo_sqlite3_void, ZEND_ACC_PRIVATE|ZEND_ACC_CTOR)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -3360,7 +3360,7 @@ const zend_function_entry basic_functions[] = { /* {{{ */
|
||||
|
||||
PHP_FE(sys_get_temp_dir, arginfo_sys_get_temp_dir)
|
||||
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -204,7 +204,7 @@ const zend_function_entry sybase_functions[] = {
|
||||
PHP_FALIAS(mssql_set_message_handler, sybase_set_message_handler, arginfo_sybase_set_message_handler)
|
||||
PHP_FALIAS(mssql_deadlock_retry_count, sybase_deadlock_retry_count, arginfo_sybase_deadlock_retry_count)
|
||||
#endif
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
|
||||
zend_module_entry sybase_module_entry = {
|
||||
|
@ -95,7 +95,7 @@ const zend_function_entry sysvmsg_functions[] = {
|
||||
PHP_FE(msg_stat_queue, arginfo_msg_stat_queue)
|
||||
PHP_FE(msg_set_queue, arginfo_msg_set_queue)
|
||||
PHP_FE(msg_queue_exists, arginfo_msg_queue_exists)
|
||||
{NULL, NULL, NULL} /* Must be the last line in sysvmsg_functions[] */
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
@ -84,7 +84,7 @@ const zend_function_entry sysvsem_functions[] = {
|
||||
PHP_FE(sem_acquire, arginfo_sem_acquire)
|
||||
PHP_FE(sem_release, arginfo_sem_release)
|
||||
PHP_FE(sem_remove, arginfo_sem_remove)
|
||||
{NULL, NULL, NULL}
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user