来自 php twitter api 的 json 调用
$content = $connection->get('statuses/public_timeline');
。当我在我的 php 文件中使用这个片段时。我想从如下所示的结果数组中回显 $content[0].text:
Array
(
[0] => stdClass Object
(
[in_reply_to_user_id_str] =>
[coordinates] =>
[geo] =>
[user] => stdClass Object
(
[profile_sidebar_border_color] => a166d9
[followers_count] => 40
...
)
[truncated] =>
[text] => some dump text
...
)
...
)
我将如何访问 [text] 或 [profile_sidebar_border_color]。 PHP 语法是什么?我应该解码吗?
$content = $connection->get('statuses/public_timeline');
. When I use this fragment in my php file. I would like to echo $content[0].text from result array that shown below:
Array
(
[0] => stdClass Object
(
[in_reply_to_user_id_str] =>
[coordinates] =>
[geo] =>
[user] => stdClass Object
(
[profile_sidebar_border_color] => a166d9
[followers_count] => 40
...
)
[truncated] =>
[text] => some dump text
...
)
...
)
How will I access [text] or [profile_sidebar_border_color]. What is the PHP syntax? Should I decode?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要
文本和
用户个人资料侧边栏边框颜色
You want
for the text and
For the user's profile sidebar border color