在 php 中拆分与爆炸
2022-08-30 12:27:35
和 在 php 中有什么区别?explode
split
分解
拆分字符串。
(在较新版本的PHP中替换为split
mb_split
)也这样做,除了它支持使用正则表达式进行拆分。
preg_split
也这样做,并且速度提高了25-50%,并且支持更强大的Perl兼容正则表达式。
split
使用正则表达式,同时使用分隔符字符。不鼓励使用,因为它在 PHP 5.3 中已弃用。explode
split