$title = 'the.test.hd.part12';
需要所有单词,直到找到单词“part”
应该返回 - the.test.hd.
任何帮助表示赞赏。谢谢。
答案 0 :(得分:2)
echo strstr($title, 'part', true); // As of PHP 5.3.0
答案 1 :(得分:0)
echo current(explode('part12',$title));
答案 2 :(得分:0)
对于PHP版本的用户< 5.3.0:
echo substr($title, 0, strpos($title, $needle));