diff options
Diffstat (limited to 'inc/poche/Tools.class.php')
-rw-r--r-- | inc/poche/Tools.class.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/inc/poche/Tools.class.php b/inc/poche/Tools.class.php index 4a72bae3..0eb0d9ea 100644 --- a/inc/poche/Tools.class.php +++ b/inc/poche/Tools.class.php | |||
@@ -224,4 +224,13 @@ class Tools | |||
224 | 224 | ||
225 | return FALSE; | 225 | return FALSE; |
226 | } | 226 | } |
227 | |||
228 | public static function getReadingTime($text) { | ||
229 | $word = str_word_count(strip_tags($text)); | ||
230 | $minutes = floor($word / 200); | ||
231 | $seconds = floor($word % 200 / (200 / 60)); | ||
232 | $time = array('minutes' => $minutes, 'seconds' => $seconds); | ||
233 | |||
234 | return $minutes; | ||
235 | } | ||
227 | } \ No newline at end of file | 236 | } \ No newline at end of file |