常用的字符串输出函数:
1.echo
2.Print
3.Die()
4.Printf()
5.Sprintr()
常用的字符串格式化函数:
1.去除空格:
ltrim()
rtrim()
trim()
str_pad();把字符串填充
大小写有关的函数
strtolower(); 把字符串转成小写
strtopper() ; 把字符串转成大写
ucfirst(); 把首字母转成大写的函数
ucword(); 将每个单词转成大写的函数
/*HTML标签相关的格式化*/
nl2br(); 插入HTML 换行符 插入<br> 将回车转成br
htmllentities(); 把预定的字符串转成实体 删除THML 代码
htmlspecialchars(); 把实体转成HTML格式 将原有的HTML转成HTML格式gt: lt:
stripslashes(); 删除表单提交的反斜杠
strip_tags(); 删除HTML所有标签标签
strip_tage(); 加入第二个参数可以保留一些标签
其它的字符串格式化函数:
number_format(); 格式化一些数字
通常在商城中的11.00中出现:
$price=12343.132324;
number_format($price,); //默认千位分组
number_format($price,2); //小数点后面保留两位
number_format($price,2,’.’,’,’)
123,243,234,343.00;
strrev(); 反转字符串 将字符串反过来嘻嘻
md5() MD5加密
字符串比较函数
按照字节顺序比较
strcmp($str1,$str2); 区分大小写
$str1==$str2 返回值 0
$str1 > $str2 返回值 1
$str1 < $str2 返回值 -1
strcasecmp(); 不区分大小写
/*按照自然数排序*/
strnatcmp()