用PHP列出Google电子表格答案(解析JSON)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用PHP列出Google电子表格答案(解析JSON)相关的知识,希望对你有一定的参考价值。
Make your spreadsheet public to get a key like this: 0AsfENoKj1ir7dE8yR6U0aUtpdTVNM20wRlNJOhZaclGSet it on the script and you're all done.
<?php $key = '0AsfENoKj1ir7dE8yR6U0aUtpdTVNM20wRlNJOhZaclG'; $json_string = file_get_contents("https://spreadsheets.google.com/feeds/list/$key/od6/public/values?alt=json"); foreach ($obj->{'feed'}->{'entry'} as $entry) { echo "<p>"; $num_column = 0; foreach ($answer as $a) { { $a = $a[1]; $num_column++; echo "<b>$num_column:</b> $a<br/>"; } } echo "</p>"; } ?>
以上是关于用PHP列出Google电子表格答案(解析JSON)的主要内容,如果未能解决你的问题,请参考以下文章