考虑我们有一个 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';