php的字符串用法小結(jié)
更新時間:2010年06月08日 00:09:38 作者:
php的字符串用法小結(jié),剛開始接觸php字符串的朋友可以參考下。
1 求長度,最基本的
$text = "sunny day";
$count = strlen($text); // $count = 9
2 字符串截取
截取前多少個字符
$article = "BREAKING NEWS: In ultimate irony, man bites dog."; $summary = substr_replace($article, "...", 40);
3 算單詞數(shù)
$article = "BREAKING NEWS: In ultimate irony, man bites dog."; $wordCount = str_word_count($article);
// $wordCount = 8
4 將字符串變成HTML的連接
$url = "W.J. Gilmore, LLC (http://www.dbjr.com.cn)";
$url = preg_replace("/http://([A-z0-9./-]+)/", "$0", $url);
5 去除字符中的HTML字符串
$text = strip_tags($input, "
");
6 nl2br:
$comment = nl2br($comment);
變成帶HTML格式
7 Wordwrap
限制每行字?jǐn)?shù)
$speech = "Four score and seven years ago our fathers brought forth, upon this continent, a new nation, conceived in Liberty, and dedicated to the proposition that all men are created equal.";
echo wordwrap($speech, 30);
輸出:
Four score and seven years ago our fathers brought forth, upon this continent, a new nation, conceived in Liberty, and dedicated to the proposition that all men are created equal.
$text = "sunny day";
$count = strlen($text); // $count = 9
2 字符串截取
截取前多少個字符
$article = "BREAKING NEWS: In ultimate irony, man bites dog."; $summary = substr_replace($article, "...", 40);
3 算單詞數(shù)
$article = "BREAKING NEWS: In ultimate irony, man bites dog."; $wordCount = str_word_count($article);
// $wordCount = 8
4 將字符串變成HTML的連接
$url = "W.J. Gilmore, LLC (http://www.dbjr.com.cn)";
$url = preg_replace("/http://([A-z0-9./-]+)/", "$0", $url);
5 去除字符中的HTML字符串
$text = strip_tags($input, "
");
6 nl2br:
$comment = nl2br($comment);
變成帶HTML格式
7 Wordwrap
限制每行字?jǐn)?shù)
$speech = "Four score and seven years ago our fathers brought forth, upon this continent, a new nation, conceived in Liberty, and dedicated to the proposition that all men are created equal.";
echo wordwrap($speech, 30);
輸出:
Four score and seven years ago our fathers brought forth, upon this continent, a new nation, conceived in Liberty, and dedicated to the proposition that all men are created equal.
相關(guān)文章
php使用post數(shù)組的鍵值創(chuàng)建同名變量并賦值的方法
這篇文章主要介紹了php使用post數(shù)組的鍵值創(chuàng)建同名變量并賦值的方法,涉及php操作數(shù)組的技巧,非常具有實用價值,需要的朋友可以參考下2015-04-04php和javascript之間變量的傳遞實現(xiàn)代碼
本文提供一種解決php和javascript之間變量的傳遞的方法,需要的朋友可以參考下2012-12-12PHP sleep()函數(shù), usleep()函數(shù)
這篇文章主要介紹了PHP sleep()函數(shù), usleep()函數(shù),需要的朋友可以參考下2016-08-08