1. Go to this page and download the library: Download waqarahmed/read-time library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
waqarahmed / read-time example snippets
$text = str_repeat('ad bc ', 251); //502 words in $text
echo ReadTime::minRead($text);
$text = str_repeat('ad bc ', 251); //502 words in $text
ReadTime::time($text);
['minutes' => 2, 'seconds' => 12]
public function __construct(
string $text,
array $translation = null,
bool $abbreviate = true,
bool $rtl = false,
string $language = null,
int $wordsPerMinute = 228
)
$text = str_repeat('ad bc ', 251); //502 words in $text
$result = new ReadTime($this->generateText(), ['minute' => 'dakika', 'minutes' => 'dakika', 'read' => 'okuman'], false, false, 'tr');
echo $result->getTime();