para mis propósitos que hice esto:búsqueda si existe una cadena en otra cadena
<?php
$mystring = 'Gazole,';
$findme = 'Sans Plomb 95';
$pos = strpos($mystring, $findme);
if ($pos >= 0) {
echo "The string '$findme' was found in the string '$mystring'";
echo " and exists at position $pos";
} else {
echo "The string '$findme' was not found in the string '$mystring'";
}
?>
Sin embargo, siempre se ejecuta esta rama:
echo "The string '$findme' was found in the string '$mystring'";
echo " and exists at position $pos";
aunque la cadena estoy en busca de doesn ' t existe.
Por favor ayuda, thx de antemano :))