tellmewhen字串 php的字串用法小結

WBOY
發布: 2016-07-29 08:43:00
原創
1582 人瀏覽過

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教程有興趣的朋友有所幫助。

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!