Zend 和 google 融合表

发布于 2024-12-07 18:07:58 字数 551 浏览 3 评论 0原文

我有一个包含邮政编码的融合表。 我正在尝试使用 PHP 访问它。

几个小时后,我设法使用 Zend 显示(选择)一些内容。 我现在可以显示 Http 响应的正文。

但我找不到为每个邮政编码执行“foreach”的方法(我需要为每个邮政编码更新另一列)。

我的代码:

$data = $gdata->get($url);

$postcodes = $data->getRawBody();   
foreach ($postcodes as $codes)
{
    echo "postcode: ". $codes. "<br/>";
}

echo "<pre>";
var_dump($postcodes);
echo "</pre>\n";

所以,foreach 返回一个错误: 中为 foreach() 提供的参数无效

警告:在转储 : 字符串(147555)“名称 AB10 1 AB10 6 AB10 7 AB11 5 AB11 6 AB11 7 AB11 8 AB11 9 AB12 3

I have a fusion table containing postcodes.
I'm trying to access it using PHP.

After hours, I've managed to get something display (Select) using Zend.
I'm now able to display the body of the Http response.

But I can't find a way to do a 'foreach' for each postcode (I need to update another column for each postcode).

My code:

$data = $gdata->get($url);

$postcodes = $data->getRawBody();   
foreach ($postcodes as $codes)
{
    echo "postcode: ". $codes. "<br/>";
}

echo "<pre>";
var_dump($postcodes);
echo "</pre>\n";

So, the foreach returns an error:
Warning: Invalid argument supplied for foreach() in

And the dump:
string(147555) "name
AB10 1
AB10 6
AB10 7
AB11 5
AB11 6
AB11 7
AB11 8
AB11 9
AB12 3

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

念三年u 2024-12-14 18:07:58

设法解决了它

$postcodes = $data->getRawBody(); 
$codes = split ( "\n", $postcodes);

foreach ($codes as $entry) 
{ 
    echo "postcode:" . $entry . "<br/>"; 
}

Managed to solve it

$postcodes = $data->getRawBody(); 
$codes = split ( "\n", $postcodes);

foreach ($codes as $entry) 
{ 
    echo "postcode:" . $entry . "<br/>"; 
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文