Zend 和 google 融合表
我有一个包含邮政编码的融合表。 我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设法解决了它
Managed to solve it