PHP 7 – Deprecated split() function
-
In
classes/wpai-settings.php, the line :$ads = split('#wpai-del#',$blocks[intval($id)]->default_ads);Should be replaced with :
$ads = explode('#wpai-del#',$blocks[intval($id)]->default_ads);Otherwise, a fatal error will occur.
More info : http://php.net/manual/en/function.split.php
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘PHP 7 – Deprecated split() function’ is closed to new replies.