Summary of string usage in PHP

  • 2020-03-31 20:54:45
  • OfStack

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


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

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

Turn a string into an HTML join
$url = "W.J. Gilmore, LLC (//www.jb51.net)";
$url = preg_replace ("/http:// (A - z0-9. / - +)/", "$0, $url);

Remove an HTML string from a character
$text = strip_tags ($input,"
");

6 nl2br:
$comment = nl2br ($comment);
Change 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 ($researched, 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 were created equal.

Related articles: