Published
- 1 min read
cari kata pada string php
The solution for this is noted below
cari kata pada string php
Solution
$string = "Ini adalah contoh string untuk mencari kata.";
$keyword = "CONTOH";
$found = stristr($string, $keyword);
if ($found !== false) {
echo "Kata ditemukan: $found";
} else {
echo "Kata tidak ditemukan.";
}
Try other methods by searching on the site. That is if this doesn’t work