如何通过php获取句子中的字符串索引?

时间:2014-12-11 07:40:07

标签: php

我有这个代码

<?php
$isi = $a['isi'];
$keyword = $_GET['tbSearch'];
$index = strpos("Ut varius consectetur tellus, id hendrerit neque auctor vel.","id");
echo "<h4>".$index."</h4>"          
?>

,输出为“30”

现在,我有另一个代码

<?php
$isi = $a['isi'];//from database
$keyword = $_GET['tbSearch'];//query string
$index = strpos($isi,$keyword);
echo "<h4>".$index."</h4>"          
?>

但输出为空。任何想法?

1 个答案:

答案 0 :(得分:0)

根据评论,如果您不想匹配案例,则必须使用stripos,否则strpos将返回false。