我想对$ 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';
?>
答案 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;
?>