reading time

This commit is contained in:
floppy0 2018-02-15 14:51:21 +01:00
parent 4856a6316f
commit 8807414d1b
1 changed files with 11 additions and 0 deletions

View File

@ -485,6 +485,17 @@ class Page {
return $list;
}
// Returns the amount of minutes takes to read the page
public function readingTime() {
$words = $this->content(true);
$words = strip_tags($words);
$words = str_word_count($words);
$average = $words / 200;
$minutes = round($average);
return $minutes;
}
// Returns relative time (e.g. "1 minute ago")
// Based on http://stackoverflow.com/a/18602474
// Modified for Bludit