Created
January 22, 2014 06:18
-
-
Save abass/8554216 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function read_time($text){ | |
$words = str_word_count(strip_tags($text)); | |
$min = floor($words / 200); | |
if($min === 0){ | |
return 'min read'; | |
} | |
return $min . 'min read'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment