我的代码:
$string="655:47 Text: 0 n\some more text here\t\2\r\3\tl\0\f0\\f1\\f2\\a0\0\a1\0\a2\255";
$a=explode("\\",$string);
var_dump($a);
虽然我得到的输出是:
array(7) {
[0]=>
string(33) "655:47 Text: 0 n"
[1]=>
stringl20) "some more text
0"
[2]=>
string(2) "f1"
[3]=>
string(2) "f2"
[4]=>
string(3) "a0"
[5]=>
string(3) "a1"
[6]=>
string(3) "a2"
}
我想在找到的每个 '\' 聊天中拆分字符串(但保留所有值)虽然我想让函数爆炸并正常工作。我该如何解决这个问题?