Zdravim,
potreboval bych poradit - mam text a potrebuji zjistit, jestli se v danem textu nachazi klicove slovo, napr. ahoj
Budu moc rad za kazdou napovedu.
Diky!
php.net/strpos
<?php
$mystring = 'abc';
$findme = 'a';
$pos = strpos($mystring, $findme);
// Note our use of ===. Simply == would not work as expected
// because the position of 'a' was the 0th (first) character.
if ($pos === false) {
echo "The string '$findme' was not found in the string '$mystring'";
} else {
echo "The string '$findme' was found in the string '$mystring'";
echo " and exists at position $pos";
}
?>
#4 peter
no kdyby se to blbe hledalo tak nereknu (ale tohle uz se muselo resit nejmin milionkrat)... Taky sem mohl dat rovnou odkaz na PHP manual, bez toho se stejne nemuze obejit.
Sice bych pouzil stripos, at dalsi dotaz neni jak to udelat case sensitive...
Ano, opravdu chci reagovat → zobrazí formulář pro přidání příspěvku