PHP xml_get_current_byte_index() 函数PHP XML Parser 函数定义和用法xml_get_current_byte_index() 函数获取 XML 解析器的当前字节索引。语法xml_get_current_byte_index
PHP xml_error_string() 函数PHP XML Parser 函数定义和用法xml_error_string() 函数获取 XML 解析器的错误描述。语法xml_error_string(errorcode) 参数 描述
PHP utf8_encode() 函数PHP XML Parser 函数定义和用法utf8_encode() 函数把 ISO-8859-1 字符串编码为 UTF-8。Unicode 是全球标准,已经发展到能够通过唯一的编码来描述所有
PHP utf8_decode() 函数PHP XML Parser 函数定义和用法utf8_decode() 函数把 UTF-8 字符串解码为 ISO-8859-1。该函数把用 UTF-8 方式编码的 ISO-8859-1 字符串转换成单字节
PHP wordwrap() 函数PHP String 函数实例按照指定长度对字符串进行折行处理:<?php$str = "长单词的一个例子:Supercalifragulistic";echo wordwrap($str,15,"<br>\n");?>完整
PHP vsprintf() 函数PHP String 函数实例把格式化字符串写入变量中:<?php$number = 9;$str = "Beijing";$txt = vsprintf("There are %u million bicycles in %s.",array($nu
PHP vprintf() 函数PHP String 函数实例输出格式化的字符串:<?php$number = 9;$str = "Beijing";vprintf("There are %u million bicycles in %s.",array($number,$str));?>
PHP vfprintf() 函数PHP String 函数实例把文本写入名为 "test.txt" 的文本文件:<?php$number = 9;$str = "Beijing";$file = fopen("test.txt","w");echo vfprintf($file,"T
PHP ucwords() 函数PHP String 函数实例把每个单词的首字符转换为大写:<?phpecho ucwords("hello world");?>完整实例:<!DOCTYPE html><html><body><?phpecho ucwords("hello
PHP ucfirst() 函数PHP String 函数实例把 "hello" 的首字符转换为大写:<?phpecho ucfirst("hello world!");?>完整实例:<!DOCTYPE html><html><body><?phpecho ucfirst("hell
PHP trim() 函数PHP String 函数实例移除字符串两侧的字符("Hello" 中的 "He" 以及 "World" 中的 "d!"):<?php$str = "Hello World!";echo $str . "<br>";echo trim($str,"Hed!
PHP substr_replace() 函数PHP String 函数实例把 "Hello" 替换成 "world":<?phpecho substr_replace("Hello","world",0);?>完整实例:<!DOCTYPE html><html><body><?phpecho
PHP substr_count() 函数PHP String 函数实例计算 "Shanghai" 在字符串中出现的次数:<?phpecho substr_count("I love Shanghai. Shanghai is the biggest city in china.","
PHP substr_compare() 函数PHP String 函数实例比较两个字符串:<?phpecho substr_compare("Hello world","Hello world",0);?>完整实例:<!DOCTYPE html><html><body><?phpecho
PHP substr() 函数PHP String 函数实例从字符串中返回 "world":<?phpecho substr("Hello world",6);?>完整实例:<!DOCTYPE html><html><body><?phpecho substr("Hello world",