排序
xml_parse
PHP xml_parse() 函数定义和用法xml_parse() 函数解析 XML 文档。如果成功,则返回 true。否则,返回 false。语法xml_parse(parser,xml,end)参数描述parser必需。规定要使用的 XML 解析器。xm...
xml_get_current_column_number
PHP xml_get_current_column_number() 函数定义和用法xml_get_current_column_number() 函数获取 XML 解析器的当前列号。语法xml_get_current_byte_index(parser)参数描述parser必需。规定要...
xml_get_error_code
PHP xml_get_error_code() 函数定义和用法xml_get_error_code() 函数获取 XML 解析器错误代码。如果成功,则返回错误代码。否则,返回 false。语法xml_get_error_code(parser)参数描述parser...
xml_get_current_line_number
PHP xml_get_current_line_number() 函数定义和用法xml_get_current_line_number() 函数获取 XML 解析器的当前行号。语法xml_get_current_line_number(parser)参数描述parser必需。规定要使用...
xml_get_current_byte_index
PHP xml_get_current_byte_index() 函数定义和用法xml_get_current_byte_index() 函数获取 XML 解析器的当前字节索引。语法xml_get_current_byte_index(parser)参数描述parser必需。规定要使...
xml_error_string
PHP xml_error_string() 函数定义和用法xml_error_string() 函数获取 XML 解析器的错误描述。语法xml_error_string(errorcode)参数描述errorcode必需。规定要使用的错误代码。该错误码是 xml_...
utf8_encode
PHP utf8_encode() 函数定义和用法utf8_encode() 函数把 ISO-8859-1 字符串编码为 UTF-8。Unicode 是全球标准,已经发展到能够通过唯一的编码来描述所有语言中的字符,外加大量的符号。不过,...
utf8_decode
PHP utf8_decode() 函数定义和用法utf8_decode() 函数把 UTF-8 字符串解码为 ISO-8859-1。该函数把用 UTF-8 方式编码的 ISO-8859-1 字符串转换成单字节的 ISO-8859-1 字符串。如果成功,该函...
wordwrap
PHP wordwrap() 函数定义和用法wordwrap() 函数按照指定长度对字符串进行折行处理。如果成功,则返回折行后的字符串。如果失败,则返回 false。语法wordwrap(string,width,break,cut)参数描述...
vsprintf
PHP vsprintf() 函数定义和用法vsprintf() 函数把格式化字符串写入变量中。与 sprintf() 不同,vsprintf() 中的 arg 参数位于数组中。数组的元素会被插入主字符串的百分比 (%) 符号处。该...
