Skip to content

Instantly share code, notes, and snippets.

@sepiariver
Last active December 21, 2017 12:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sepiariver/8b12917b6cba4a5460e6675f20ac8ac6 to your computer and use it in GitHub Desktop.
Save sepiariver/8b12917b6cba4a5460e6675f20ac8ac6 to your computer and use it in GitHub Desktop.
Reading time MODX output filter.
<?php
$options = (int) $modx->getOption('options', $scriptProperties, 200, true); // 200 words per minute
$wordCount = (int) str_word_count(strip_tags($input)); // To display word count set options to 0
if ($options === 0) return $wordCount;
return ceil($wordCount / abs($options));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment