カード決済の際、下記エラーがいくつか発生。
Deprecated: Function split() is deprecated in
com\gmo_pg\client\common 内の
ConnectUrlMap.php および Log.php に記載のある split が PHP 5.3.0以降は非推奨となっている為、発生しているエラーとなる。
それぞれ下記と修正する
//$pathArray = split(PATH_SEPARATOR, get_include_path());
$pathArray = preg_split(‘#:(?!//)#’, get_include_path());
//$inc_pathes = split(PATH_SEPARATOR, get_include_path());
$inc_pathes = preg_split(‘#:(?!//)#’, get_include_path());