有没有什么好的方式来分割一个字符串后“”或. ?
喜欢
$string = "test.test" result = test $string = "test doe" result = test
当然我可以使用爆炸两次,但我确信这不是最好的解决方案;)
如果要拆分几个不同的字符,请查看
preg_split
原文链接:https://www.f2er.com/php/131338.html//split string on space or period: $split=preg_split('/[ \.]/',$string);