0

这是一个简单的问题,但我有以下 php 文件,其中引用了一些代码来获取 twitter 关注者计数。这一切都有效,但在我的 html 网站文件中,我想将“关注者计数”显示为文本,而在我的 php 中,我不确定要添加哪一行。我已经在我的 html 中引用了脚本,现在我正在尝试通过使用来获取它,<span id="followers_count"></span>但没有出现任何内容。我做错了吗,或者我在我的 php 文件中添加了什么来获取关注者数量并将其显示为我的 html 中的文本?谢谢!

<?php   
    require_once('js/twitter-api-php/TwitterAPIExchange.php');

    /** Set access tokens here - see: https://dev.twitter.com/apps/ **/
    $settings = array(
    'oauth_access_token' => "key here",
    'oauth_access_token_secret' => "key here",
    'consumer_key' => "key here",
    'consumer_secret' => "key here"
    );

    $ta_url = 'https://api.twitter.com/1.1/statuses/user_timeline.json';
    $getfield = '?screen_name=inovize;
    $requestMethod = 'GET';
    $twitter = new TwitterAPIExchange($settings);
    $follow_count=$twitter->setGetfield($getfield)
    ->buildOauth($ta_url, $requestMethod)
    ->performRequest();
    $data = json_decode($follow_count, true);
    $followers_count=$data[0]['user']['followers_count'];
    echo $followers_count;

    *Do I add anything here to take followers_count to html text?*


    });
4

1 回答 1

0

您目前正在回显此代码驻留在您的 PHP 代码中的位置,这很可能位于页面顶部。

echo $followers_count;

注释掉这一行

//echo $followers_count;

以及你的跨度在哪里呼应那条线

<span id="followers_count"><?php echo $followers_count; ?></span>
于 2013-07-17T20:51:49.073 回答