: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
namespace Nextend\Framework\Parser;
public static function parse($str, $concat = false) {
$v = explode("|*|", $str);
for ($i = 0; $i < count($v); $i++) {
if (strpos($v[$i], "||") !== false) {
if ($concat === false) $v[$i] = explode("||", $v[$i]); else $v[$i] = str_replace("||", $concat, $v[$i]);
return count($v) == 1 ? $v[0] : $v;