$text = $_POST['text'];
$find = $_POST['find'];
$offset = 0;
while ($offset < strlen($text))
{
$pos = strpos($text, $find, $offset);
$offset += strlen($find);
echo "$find found in $pos <br>";
}
这个程序有问题。我要做的就是打印 $find 在 $text 中的所有位置。
告诉我问题是什么。尽量不要改变while条件。提前致谢。