mainstring と searchstring があるとします。
<?php
$mystring = ',1,123,167,778,456';
$findme = '123';
$pos = strpos($mystring, $findme);
if ($pos === false) {
echo "The string '$findme' was not found in the string '$mystring'";
} else {
echo "The string '$findme' was found in theenter code here string '$mystring'";
echo " and exists at position $pos";
}
?>
123 が見つかった場合は正常に動作し、見つかった回答文字列が返されますが、$findme
値 '12' を指定した場合も肯定的な回答が得られます。文字列に一致する場合strpos()
、この一致文字列は次のような変数に保存されます。
strpos(',1,123,167,778,456','12');
次に、123 が変数に格納されます
$string_from_main_string = '123';