在php中读取数组

时间:2013-04-10 19:36:29

标签: php arrays web-crawler

我正在制作一个爬虫,只是尝试基础知识。我试图回应从爬虫那里获得的数组时遇到困难。这是数组:

Array ( [0] => Array ( [0] => vageemail@hotmail.com ) [1] => Array ( [0] => Testemail@hotmail.com ) ) 

我想回应一下:

vageemail@hotmail.com
Testemail@hotmail.com

所以我做的是:

$teller = 1;
while ( $teller != 10 ) {
    foreach ( $email[$teller] as $mail ) {
        echo $mail;
        $teller = $teller + 1;
    }
}

我做错了什么?

3 个答案:

答案 0 :(得分:0)

是否显示错误消息?如果是这样,它是什么?

此外,while循环几乎没用,因为foreach循环充当“while循环”,直到它遍历整个数组。

答案 1 :(得分:0)

您的数组从0开始 假设$emails是你的数组。

foreach ( $emails as $email ) {
   foreach ( $email as $mail ) {
      echo $mail;       
   }    
}

答案 2 :(得分:-1)

foreach($array as $a)
    echo $a[0]