Summary of string usage in php_PHP tutorial

WBOY
Release: 2016-07-21 15:37:23
Original
765 people have browsed it

1 Find the length, the most basic
$text = "sunny day";
$count = strlen($text); // $count = 9


2 String interception
How many characters before interception
$article = "BREAKING NEWS: In ultimate irony, man bites dog."; $summary = substr_replace($article, ".. .", 40);

3 Count the number of words
$article = "BREAKING NEWS: In ultimate irony, man bites dog."; $wordCount = str_word_count($article) ;
// $wordCount = 8

4 Concatenation to convert string into HTML
$url = "W.J. Gilmore, LLC (http://www.jb51 .net)";
$url = preg_replace("/http://([A-z0-9./-]+)/", "$0", $url);

5 Remove HTML string from characters
$text = strip_tags($input, "
");

6 nl2br:
$comment = nl2br($comment );
Convert to HTML format

7 Wordwrap
Limit the number of words per line
$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);

Output:
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.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/321986.htmlTechArticle1 To find the length, the most basic $text = "sunny day"; $count = strlen($text); // $count = 9 2 Number of characters before string interception $article = "BREAKING NEWS: In ultimate irony, man b...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!