我有一个像
这样的字符串$str = "8 day tour details";
我需要在几天之前和之后获得详细信息。我怎么能分开这句话?
答案 0 :(得分:0)
由于每个单词后面都有空格,我假设句子格式保持不变。你的问题也有点不清楚所以我假设你想要问的是什么。
$str = "8 day tour details";
$newstr = explode(" ",$str);
//$newstr[0] is the date 8 and $newstr[1] is the day
我希望这会对你有所帮助。