在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
方法一:先将分隔符转换成统一字符,再使用explode进行拆分
$arr=explode('#',str_replace(array(":"),'#',$string)); 方法二:使用preg_split拆分 $string="php教程#php入门:教程#字符串:多分隔符#字符串:拆分#数组"; $arr = preg_split("/(#|:)/",$string); print_r($arr); 输出结果: |
2022-07-18
2022-08-17
2022-11-06
2022-07-08
2022-08-17
请发表评论