显示错误:
警告:strpos()[function.strpos]:偏移量未包含在字符串
中
代码是
function trimSearchURL($URL, $Pos, $end = '&')
{
if ($Pos) {
$nEndPos = strpos($URL, $end, $Pos);
if ($nEndPos === false) {
$URL = substr($URL, $Pos);
} else {
$URL = substr($URL, $Pos, $nEndPos - $Pos);
}
}
return $URL;
}
答案 0 :(得分:3)
$ Pos似乎比$ URL中的字符串长
$nEndPos = strpos($URL, $end, $Pos)