PHP中的split()函数已经在PHP 5.3.0版本中被废弃,从PHP 7.0.0版本起已经被移除。建议使用preg_split()函数来代替。
preg_split()函数用于将字符串按照正则表达式模式进行拆分。它的用法如下:
preg_split(pattern, subject, limit, flags)
参数说明:
返回值:
示例:
$str = "Hello World! This is a PHP string.";
$pattern = "/[\s,]+/"; // 按照空格和逗号进行拆分
$result = preg_split($pattern, $str);
print_r($result);
输出:
Array
(
[0] => Hello
[1] => World!
[2] => This
[3] => is
[4] => a
[5] => PHP
[6] => string.
)
上述示例中,字符串$str被按照空格和逗号进行拆分,拆分后的结果保存在数组$result中。