Php method for intercepting strings by words _ PHP Tutorial

Source: Internet
Author: User
Php truncates strings by words. The following code specifies the number of characters and the number of words to intercept a string in php :? Phpfunctionlimit_words ($ string, $ word_limit) {$ wordsexplode (, $ string); r php method for intercepting strings by words

Specify the number of strings and words to intercept.

The code is as follows:

Function limit_words ($ string, $ word_limit)
{
$ Words = explode ("", $ string );
Return implode ("", array_splice ($ words, 0, $ word_limit ));
}
// Example Usage
$ Content = "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. deleteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. ";
Echo limit_words ($ content, 20 );
?>

The following code specifies the number of strings and words to intercept :? Php function limit_words ($ string, $ word_limit) {$ words = explode (, $ string); r...

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.