Categories: Php

Word Cutter function in PHP

Share

In WordPress, it is very popular to show excerpt of a content which shows up to particular word limits.

In each and every cases it is not require to show the whole content rather than small content with limited words.

Below function is an example of word limit or word cutter for a content.

function wordCutter($str,$len) {
 if(strlen(strip_tags(html_entity_decode($str)))>len)
 {
  $str = substr(strip_tags(html_entity_decode($str)),0,len);
  $pos   = strrpos($str," ");
  $str = substr(strip_tags(html_entity_decode($str)),0,$pos).'...';
 }
 else
 {
  $str = strip_tags(html_entity_decode($str));
 }
}

Recent Posts

Role Of Gojek Clone In Growth Campaigns For Your Business

When was the last time you heard that a clone app like Gojek could efficiently…

2 hours ago

How to Optimize Your E-Commerce Pages and Improve UX?

The e-commerce market is growing and evolving at a rapid pace. More and more people…

13 hours ago

Overview of Reputation, Services, and Features of IplWin

IplWin stands as a reliable and enthralling platform for Indian punters, offering a captivating blend…

3 days ago

Blogging Brilliance: Driving Traffic and Engagement with Quality Content

Introduction In today's online age, consumers are constantly bombarded with information. They crave valuable content…

3 days ago

How Assisted Living Gives Seniors More Freedom

In today’s rapidly aging society, finding a living situation that provides older adults with both…

3 days ago

Should you go for a Refurbished Mac?

If you wish to purchase a Mac, then it is strongly suggested to consider purchasing…

4 days ago