PHP quoted_printable_encode() 函数PHP String 函数定义和用法quoted_printable_encode() 函数把 8 位字符串转换为 quoted-printable 字符串。提示:经过 quoted-printable
PHP quoted_printable_decode() 函数PHP String 函数实例把 quoted-printable 字符串解码为 8 位 ASCII 字符串:<?php$str = "I=0Alove=0AShanghai!";echo quoted_printable_
PHP printf() 函数PHP String 函数实例输出格式化的字符串:<?php$number = 9;$str = "北京";printf("在%s有 %u 百万辆自行车。",$str,$number);?>完整实例:<!DOCTYPE html><h
PHP print() 函数PHP String 函数实例向输出写入文本:<?phpprint "I love Shanghai!";?>完整实例:<!DOCTYPE html><html><body><?phpprint "I love Shanghai!";?></body></htm
PHP parse_str() 函数PHP String 函数实例把查询字符串解析到变量中:<?phpparse_str("name=Bill&age=60");echo $name."<br>";echo $age;?>完整实例:<!DOCTYPE html><html><bo
PHP ord() 函数PHP String 函数实例返回 "S" 的 ASCII值:<?phpecho ord("S")."<br>";echo ord("Shanghai")."<br>";?>完整实例:<!DOCTYPE html><html><body><?phpecho ord("S"
PHP number_format() 函数PHP String 函数实例格式化数字:<?phpecho number_format("5000000")."<br>";echo number_format("5000000",2)."<br>";echo number_format("500000
PHP nl2br() 函数PHP String 函数实例在字符串中的新行(\n)之前插入换行符:<?phpecho nl2br("One line.\nAnother line.");?>以上代码的浏览器输出:One line.Another line.以上
PHP nl_langinfo() 函数PHP String 函数定义和用法nl_langinfo() 函数返回具体的本地信息。注释:该函数不适用 Windows 平台。提示:与返回所有本地格式化信息的 localeconv()
PHP money_format() 函数PHP String 函数实例en_US 国际格式:<?php$number = 1234.56;setlocale(LC_MONETARY,"en_US");echo money_format("The price is %i", $number);?>以
PHP metaphone() 函数PHP String 函数实例计算 "World" 的 metaphone 键:<?phpecho metaphone("Computer");?>完整实例:<!DOCTYPE html><html><body><?phpecho metaphone("Com
PHP md5_file() 函数PHP String 函数实例计算文本文件 "test.txt" 的 MD5 散列:<?php$filename = "test.txt";$md5file = md5_file($filename);echo $md5file;?>以上代码的输
PHP md5() 函数PHP String 函数实例计算字符串 "Hello" 的 MD5 散列:<?php$str = "Shanghai";echo md5($str);?>完整实例:<!DOCTYPE html><html><body><?php$str = "Shanghai"
PHP ltrim() 函数PHP String 函数实例从字符串左侧移除字符:<?php$str = "Hello World!";echo $str . "<br>";echo ltrim($str,"Hello");?>完整实例:<!DOCTYPE html><html><bo
PHP localeconv() 函数PHP String 函数实例查找美国本地的数字格式化信息:<?phpsetlocale(LC_ALL,"US");$locale_info = localeconv();print_r($locale_info);?>完整实例:<!DO