while ($strpos = strpos($text, $search, $offset)) {
$offset = $strpos + $search_length .'<br>';
$text = substr_replace($text, $replace, $strpos, $search_length);
}
注意:在第 13 行的 C:\xampp..\index.php 中遇到了格式不正确的数值
第 13 行是: while ($strpos = strpos($text, $search, $offset)) {
这就是我定义变量的方式:
$text = $_POST['text'];
$search = $_POST['searchfor'];
$offset = 0;
实在是找不到哪里出错了。
代码现在运行良好,无法解释之前究竟发生了什么。感谢您的答复。