首頁  >  文章  >  後端開發  >  tellmewhen字串 php的字串用法小結

tellmewhen字串 php的字串用法小結

WBOY
WBOY原創
2016-07-29 08:43:001556瀏覽

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 算字數
$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.jb51.net)";
$url = preg_replace("/http://([A-z0-9./-]+)/", " $0", $url);
5 去除字元中的HTML字串
$text = strip_tags($input, "
");
6 nl2br:
$comment = nl2br( $comment);
變成帶HTML格式
7 Wordwrap
限制每行字數
$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 fathers brough this continent, a new nation, conceived in Liberty, and dedicated to the proposition that all men are created equal.

以上就介紹了tellmewhen字串 php的字串用法小結,包括了tellmewhen字串方面的內容,希望對PHP教程有興趣的朋友有所幫助。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn