]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Tools/Utils.php
Add for deleting rule from an other user
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Tools / Utils.php
CommitLineData
0c83fd59
J
1<?php
2
3namespace Wallabag\CoreBundle\Tools;
4
5class Utils
6{
7 /**
4346a860 8 * Generate a token used for RSS.
0c83fd59 9 *
7a0e6970
JB
10 * @param integer $length Length of the token
11 *
0c83fd59
J
12 * @return string
13 */
7a0e6970 14 public static function generateToken($length = 15)
0c83fd59 15 {
7a0e6970 16 $token = substr(base64_encode(random_bytes($length)), 0, $length);
0c83fd59 17
132f614d
J
18 // remove character which can broken the url
19 return str_replace(array('+', '/'), '', $token);
0c83fd59 20 }
6eebd8c9
JB
21
22 /**
23 * For a given text, we calculate reading time for an article
6682139e 24 * based on 200 words per minute.
6eebd8c9
JB
25 *
26 * @param $text
27 *
28 * @return float
29 */
30 public static function getReadingTime($text)
31 {
32 return floor(str_word_count(strip_tags($text)) / 200);
33 }
0c83fd59 34}