拆分字符串
$txt="a,b,c,d,e,f";
$arr = implode(",", $txt);
计算单词数量
$article = "my name is yuexiaosheng 我的名字 叫月小升";
$count = str_word_count($article); // $c = 4
echo $count;
此方法仅仅为英文单词好用。做英文系统的童鞋很有用
删除所有HTML标签
不多说了。有人在你的评论框里乱发HTML标签,来,用这个收拾他。
$html = "我们的亚洲山石高望那个头";
$text = strip_tags($html, "");
echo $text;
计算字符相等 如果实在看不出来这玩意和等于号有什么区别,请看e后面那个小小的空格。
$pwd = "abcde";
$pwd2 = "abcde ";
if (! strcmp($pwd, $pwd2))
{
echo "False";
} else{
echo "OK";
}
//strcasecmp 不区分大小写
自动换行。
这个好。不过现在我们搞网页,自动换行基本靠样式表。
$txt = "my name is yuexiaosheng ,what is your name? where are you from.my blog is java-er.com";
echo wordwrap($txt, 10);
转化换行符号。
$txt = " my \r\n name \r\n is \r\n yuexiaosheng";
$txt = nl2br($txt);
echo $txt;
You must be logged in to post a comment.
挺实用的几个方法~