検索入力があり、スクリプトが結果を表示するときに、キーワードに太字と下線を付けたいと考えています。だから私はこのスクリプトを持っています:
$showkey = str_replace(ucfirst($_POST['station']), '<b><u>'.htmlentities(ucfirst($_POST["station"]), ENT_QUOTES).'</u></b>', $founds["fullname"][$i]);
$showkey = str_replace(lcfirst($_POST["station"]), '<b><u>'.htmlentities(lcfirst($_POST["station"]), ENT_QUOTES).'</u></b>', $founds["fullname"][$i]);
例: $_POST["station"] が 'l' の場合、すべての l が必要で、L は太字で下線が引かれています。それは現在機能していません。小さな「l」だけが太字で下線が引かれています。スクリプトが次の場合:
$showkey = str_replace(lcfirst($_POST["station"]), '<b><u>'.htmlentities(lcfirst($_POST["station"]), ENT_QUOTES).'</u></b>', $founds["fullname"][$i])
$showkey = str_replace(ucfirst($_POST['station']), '<b><u>'.htmlentities(ucfirst($_POST["station"]), ENT_QUOTES).'</u></b>', $founds["fullname"][$i]);
現在、「L」のみが太字で下線が引かれています。しかし、L と l には太字と下線の両方が必要です。
どうやってやるの?
ありがとう!