来自 php twitter api 的 json 调用

发布于 2024-11-08 15:55:36 字数 656 浏览 0 评论 0原文

$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 技术交流群。

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

发布评论

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

评论(1

不打扰别人 2024-11-15 15:55:36

您想要

$content[0]->text 

文本和

$content[0]->user->profile_sidebar_border_color

用户个人资料侧边栏边框颜色

You want

$content[0]->text 

for the text and

$content[0]->user->profile_sidebar_border_color

For the user's profile sidebar border color

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文