preg_match:未定义的偏移量

发布于 2024-12-23 13:18:52 字数 406 浏览 1 评论 0原文

这给了我一个错误,如“注意:未定义的偏移量:第 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

尽揽少女心 2024-12-30 13:18:52

前面的反斜杠 : (也许还有第二个 ^?)

backslash before : (and maybe second ^?)

你曾走过我的故事 2024-12-30 13:18:52

您是否尝试过使用

print_r($arr);

检查数组 $arr ,它可能会帮助您找到问题所在。

它似乎将 - $arr[0] 引用为 $arr[1]

Have you tried using

print_r($arr);

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]

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文