From: Rob Richards Date: Wed, 15 Nov 2006 12:27:32 +0000 (+0000) Subject: mark more functions unicode compatible X-Git-Tag: RELEASE_1_0_0RC1~1005 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a4cc7057f89a96fe0f1e6e7afdc0537a2646f785;p=php mark more functions unicode compatible --- diff --git a/ext/xml/xml.c b/ext/xml/xml.c index 5285b13255..89621d6eb8 100644 --- a/ext/xml/xml.c +++ b/ext/xml/xml.c @@ -1231,7 +1231,7 @@ PHP_FUNCTION(xml_set_object) } /* }}} */ -/* {{{ proto int xml_set_element_handler(resource parser, string shdl, string ehdl) +/* {{{ proto int xml_set_element_handler(resource parser, string shdl, string ehdl) U Set up start and end element handlers */ PHP_FUNCTION(xml_set_element_handler) { @@ -1252,7 +1252,7 @@ PHP_FUNCTION(xml_set_element_handler) } /* }}} */ -/* {{{ proto int xml_set_character_data_handler(resource parser, string hdl) +/* {{{ proto int xml_set_character_data_handler(resource parser, string hdl) U Set up character data handler */ PHP_FUNCTION(xml_set_character_data_handler) { @@ -1271,7 +1271,7 @@ PHP_FUNCTION(xml_set_character_data_handler) } /* }}} */ -/* {{{ proto int xml_set_processing_instruction_handler(resource parser, string hdl) +/* {{{ proto int xml_set_processing_instruction_handler(resource parser, string hdl) U Set up processing instruction (PI) handler */ PHP_FUNCTION(xml_set_processing_instruction_handler) { @@ -1290,7 +1290,7 @@ PHP_FUNCTION(xml_set_processing_instruction_handler) } /* }}} */ -/* {{{ proto int xml_set_default_handler(resource parser, string hdl) +/* {{{ proto int xml_set_default_handler(resource parser, string hdl) U Set up default handler */ PHP_FUNCTION(xml_set_default_handler) { @@ -1308,7 +1308,7 @@ PHP_FUNCTION(xml_set_default_handler) } /* }}} */ -/* {{{ proto int xml_set_unparsed_entity_decl_handler(resource parser, string hdl) +/* {{{ proto int xml_set_unparsed_entity_decl_handler(resource parser, string hdl) U Set up unparsed entity declaration handler */ PHP_FUNCTION(xml_set_unparsed_entity_decl_handler) { @@ -1327,7 +1327,7 @@ PHP_FUNCTION(xml_set_unparsed_entity_decl_handler) } /* }}} */ -/* {{{ proto int xml_set_notation_decl_handler(resource parser, string hdl) +/* {{{ proto int xml_set_notation_decl_handler(resource parser, string hdl) U Set up notation declaration handler */ PHP_FUNCTION(xml_set_notation_decl_handler) { @@ -1345,7 +1345,7 @@ PHP_FUNCTION(xml_set_notation_decl_handler) } /* }}} */ -/* {{{ proto int xml_set_external_entity_ref_handler(resource parser, string hdl) +/* {{{ proto int xml_set_external_entity_ref_handler(resource parser, string hdl) U Set up external entity reference handler */ PHP_FUNCTION(xml_set_external_entity_ref_handler) { @@ -1363,7 +1363,7 @@ PHP_FUNCTION(xml_set_external_entity_ref_handler) } /* }}} */ -/* {{{ proto int xml_set_start_namespace_decl_handler(resource parser, string hdl) +/* {{{ proto int xml_set_start_namespace_decl_handler(resource parser, string hdl) U Set up character data handler */ PHP_FUNCTION(xml_set_start_namespace_decl_handler) { @@ -1382,7 +1382,7 @@ PHP_FUNCTION(xml_set_start_namespace_decl_handler) } /* }}} */ -/* {{{ proto int xml_set_end_namespace_decl_handler(resource parser, string hdl) +/* {{{ proto int xml_set_end_namespace_decl_handler(resource parser, string hdl) U Set up character data handler */ PHP_FUNCTION(xml_set_end_namespace_decl_handler) { @@ -1658,7 +1658,7 @@ PHP_FUNCTION(xml_parser_get_option) } /* }}} */ -/* {{{ proto string utf8_encode(string data) +/* {{{ proto string utf8_encode(string data) U Encodes an ISO-8859-1 string to UTF-8 */ PHP_FUNCTION(utf8_encode) { @@ -1690,7 +1690,7 @@ PHP_FUNCTION(utf8_encode) } /* }}} */ -/* {{{ proto string utf8_decode(string data) +/* {{{ proto string utf8_decode(string data) U Converts a UTF-8 encoded string to ISO-8859-1 */ PHP_FUNCTION(utf8_decode) {