Đang chuẩn bị liên kết để tải về tài liệu:
PHP Developer's Dictionary- P69

Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ

PHP Developer's Dictionary- P69:PHP is an open source, server-side, HTML-embedded scripting language used to create dynamically generated Web pages. With an easy-to-use syntax and a large, extensible library of modules, PHP brings together the best of Perl, C++, and other languages. | PHP Developer s Dictionary Syntax int xml_get_current_line_number int parser Description The xmi_get_current_iine_number function which was added in PHP 3.0.6 and PHP 4.0 returns the line number that the parser is currently processing. xml_get_current_column_number Syntax int xml_get_current_column_number int parser Description The xml_get_current_column_number function which was added in PHP 3.0.6 and PHP 4.0 returns the column number on the current line that the parser is currently processing. xml_get_current_byte_index Syntax int xml_get_current_byte_index int parser Description The xml_get_current_byte_index function which was added in PHP 3.0.6 and PHP 4.0 returns the byte index that the parser is currently processing. xml_parser_free Syntax string xml_parser_free int parser IT-SC book 340 PHP Developer s Dictionary Description The xml_parser_free function which was added in PHP 3.0.6 and PHP 4.0 frees the parser and returns TRUE if successful otherwise it returns FALSE. xml_parser_set_option Syntax int xml_parser_set_option int parser int option mixed value Description The xml_parser_set_option function which was added in PHP 3.0.6 and PHP 4.0 sets an option for the specified parser . The possible option values are xml_option_case_folding which is an integer used to turn case-folding on and off on by default and XML_OPTION_TARGET_ENCODING a string used set the target encoding type. Encoding types include iso-8859-1 us-ascii and utf-8. xml_parser_get_option Syntax mixed xml_parser_get_option int parser int option The xml_parser_get_option function which was added in PHP 3.0.6 and PHP 4.0 returns the value of the specified option . See xml_parser_set_option for the possible values. utf8_decode Syntax string utf8_decode string data Description The utf8_decode function which was added in PHP 3.0.6 and PHP 4.0 decodes a character string with UTF-8 encoding to single-byte ISO-8859-1 encoding. utf8_encode IT-SC book 341 PHP Developer s Dictionary Syntax string .