Php restricts the long sentence title and replaces the code of the following words "..."

Source: Internet
Author: User
SyntaxHighlighter. all (); news & nbsp; | & nbsp; Security & nbsp; | & nbsp; Forum & nbsp; | & nbsp; download & nb

// This code can be used to limit the length of a long sentence and replace the following words with "...". it is suitable for limiting the length of the article title.
$ Str = "This is a verrrrryyyyy long string. This is a verrrrryyyyy long string."; // long string
$ No_of_words = 7; // set the maximum number of words.
$ Str_array = split ("", $ str, $ no_of_words + 1); // separate sentences with spaces
If (count ($ str_array)> $ no_of_words) {// determines whether the number of words in the original string is greater than the specified number of words.
For ($ I = 0; $ I <$ no_of_words; $ I ++) {// if the number of strings is greater than the set value
Print $ str_array [$ I]. "";} // print words one by one until the set value
Print"... (More)";} // Print the ellipsis when it reaches the set value ...... and add more for the prompt.
Else {// Otherwise, if the number of words in the original string is smaller than the set value
Print $ str;} // of course, the entire string is printed and coughed.
?>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.