The Str helper method reverse uses the function mb_str_split, which requires PHP 7 >= 7.4.0, PHP 8.
FILE: .../runner/work/givewp/givewp/src/Framework/Support/Facades/Str.php
----------------------------------------------------------------------
FOUND 1 ERROR AFFECTING 1 LINE
----------------------------------------------------------------------
565 | ERROR | The function mb_str_split() is not present in PHP
| | version 7.3 or earlier
----------------------------------------------------------------------
class Str
{
public static function reverse($value)
{
return implode(array_reverse(mb_str_split($value)));
}
}
Details
The
Str
helper methodreverse
uses the function mb_str_split, which requiresPHP 7 >= 7.4.0, PHP 8
.