preg_match:未定义的偏移量
这给了我一个错误,如“注意:未定义的偏移量:第 12 行 \index.php 中的 0”。
$arr = array('a', 'b', 'c', 'd');
$i=0;
while($i<=3){
foreach($arr as $value){
//get data
$content = file_get_contents('http://www.example.com/$value');
preg_match("^ y: ....^", $content, $match);
$string = $match[$i];
$i++;
echo $value;
echo $string;
}
}
This gives me an error like "Notice: Undefined offset: 0 in \index.php on line 12".
$arr = array('a', 'b', 'c', 'd');
$i=0;
while($i<=3){
foreach($arr as $value){
//get data
$content = file_get_contents('http://www.example.com/$value');
preg_match("^ y: ....^", $content, $match);
$string = $match[$i];
$i++;
echo $value;
echo $string;
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
前面的反斜杠 : (也许还有第二个 ^?)
backslash before : (and maybe second ^?)
您是否尝试过使用
检查数组 $arr ,它可能会帮助您找到问题所在。
它似乎将 -
$arr[0]
引用为$arr[1]
Have you tried using
to inspect the array $arr, it may help you to find what is wrong.
It seems to be referring to -
$arr[0]
as$arr[1]