使用php搜索有“着名的”空格的短语

时间:2015-10-18 08:16:33

标签: php

我有文本文件,我正在搜索其中的特定短语,如“着名的”或“天生的”。我只需要文本的位置,但不知道该怎么做 我试过了

$string = "some string that has famous for or born on in it";
var_dump(strpos($string,"famous for"));

但它没有给我结果;

preg_match("/famous for/",$string,$found);
var_dump($found);

它返回null。有人请帮忙......

1 个答案:

答案 0 :(得分:0)

你在其他地方搞乱了, 我执行了代码,它对我来说很好,不过我已添加stripos来匹配不区分大小写的字符串。

来自手册,

  

stripos - 查找字符串中第一次出现不区分大小写的子字符串的位置。

确保您至少PHP 5+02.34 0.12 .12 0 000.000

<强> DEMO