由于PHP 5.3中的弃用,要将split转换为preg_split,您可以:
$temp_array = split("\s*;\s*", $string);
$temp_array = preg_split("/\s*;\s*/", $string);
请注意preg_split所需的分隔符“/”。
$temp_array = split($needle, $string);
$temp_array = preg_split($needle, $string);
“$ needle”也需要分隔符吗?