我想对文本进行子字符串化,例如。“你好吗?” 通过使用此代码
$text= "Hello - How are you?";
$strings = explode(' - ',$text);
echo $strings[0]; // Hello
echo $strings[1]; // How are you
它不起作用,因为' - '。
如果我更改为:
$text= "Hello-How are you?";
$strings = explode('-',$text);
echo $strings[0]; // Hello
echo $strings[1]; // How are you
没关系。
有人能帮我吗?谢谢你。