使用strpos搜索,然后突出显示匹配的字母

时间:2015-02-19 07:10:14

标签: php string post str-replace strpos

我想对$ search字符串执行搜索,然后显示整个$ search字符串,并突出显示匹配的字母。

这是到目前为止的代码:

//The user input
$user_input= $_POST['user_input'];

//The search
$search = 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.'; 

$match = strpos($search, $user_input);
echo '$match';

?>

1 个答案:

答案 0 :(得分:1)

    <?php

    //The search
    $testar = 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.'; 

    $match = str_replace($_POST['user_input'], '<b>' . $_POST['user_input'] . '</b>', $testar);
    echo $match;

     ?>