Merge branch '3.0'

This commit is contained in:
terrafrost 2022-02-18 01:52:28 -06:00
commit 87be41b0ee

View File

@ -379,8 +379,10 @@ abstract class Strings
public static function increment_str(&$var)
{
if (function_exists('sodium_increment')) {
$var = strrev($var);
sodium_increment($var);
return;
$var = strrev($var);
return $var;
}
for ($i = 4; $i <= strlen($var); $i+= 4) {