Live Chat

Our Blogs

Our every actions and thoughts.


Warning: Undefined variable $title in /var/www/vhosts/hostspacer.com/httpdocs/pages/blogs/index.php on line 13


Deprecated: preg_split(): Passing null to parameter #3 ($limit) of type int is deprecated in /var/www/vhosts/hostspacer.com/httpdocs/includes/functions/sbfuncs.php on line 203
media

Calculate the estimated reading time for a given piece of content in PHP

function estimated_reading_time( $content = '', $wpm = 250 ) { $clean_content = strip_tags( $clean_content ); $word_count = str_word_count( $clean_content ); $time = ceil( $word_count / $wpm ); return $time; }