I have php two servers with different versions of php,
and am having trouble with split statement which seems to be deprecated on new box.
I replaced with explode which is not known to old box.
$connect = explode(";", DB_CONNECT);
$connect = split(";", DB_CONNECT);
what statement(s) will make both servers happy?
Upgrading is not an option tonight.
A better option in the short term is to disable the warning until you’re able to upgrade your PHP version.