Skip to content

Instantly share code, notes, and snippets.

@Velman04
Velman04 / textReadingTime.php
Last active May 3, 2023 13:00
Text reading time | Время чтения текста
public function textReadingTime($text, $wpm = 120, $pause = 0.5): int
{
preg_match_all('/\w+/u', $text, $words);
$wordCount = count($words[0]);
$totalPauses = substr_count($text, '.')
+ substr_count($text, '!')
+ substr_count($text, '?');
$totalPauseTime = $totalPauses * $pause;