如何在PHP中用多个分隔符分割字符串?

如何在PHP中用多个分隔符分割字符串?,第1张

如何在PHP中用多个分隔符分割字符串
<?php$pattern = '/[;,]/';$string = "something here ; and there, oh,that's all!";echo '<pre>', print_r( preg_split( $pattern, $string ), 1 ), '</pre>';

更新问题的更新答案:

<?php$pattern = '/[x{ff0c},]/u';//$string = "something here ; and there, oh,that's all!";$string = 'hei,nihao,a ';echo '<pre>', print_r( preg_split( $pattern, $string ), 1 ), '</pre>';


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5045941.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-15
下一篇 2022-11-15

发表评论

登录后才能评论

评论列表(0条)

保存