字符串包含字符但strpos()返回false php

时间:2016-08-10 13:34:47

标签: php

    $question = "This first Question is “Single Type” and contains data for chemistry1 chapter and Section was CHEMISTRY.
        a. a
        b. a
        c. a
        d. a
        Ans. a";

    $a = 97; // ASCII Code for a
    $search = chr($a).".";

    if(strpos(trim($question), trim($search)) !== false) {
         // do something
    }

我想找到“a”。在string中但strpos()始终返回false或不执行if语句。我无法理解它是如何可能的?因为我的字符串包含“a”。值。

我非常感谢您的回答 谢谢大家。

0 个答案:

没有答案