如何以数字格式显示数字

时间:2012-02-03 21:21:42

标签: templates drupal drupal-7 number-formatting

这就是我在template.php文件中的内容:

function twitter_count() {
    $pageID = 'TWITTERACCOUNT';
    $info = json_decode( file_get_contents('https://api.twitter.com/1/users/show.json?screen_name=' . $pageID .'') );
    echo $info->followers_count;
}

我有这个在块中显示结果:

<?php echo number_format(twitter_count("TWITTERACCOUNT") ); ?>

结果如下:

36170

1 个答案:

答案 0 :(得分:1)

尝试

<?php echo number_format(intval(twitter_count("TWITTERACCOUNT") ) ); ?>

或者

 <?php echo number_format(floatval(twitter_count("TWITTERACCOUNT") ) ); ?>

并且还从您的函数中删除该回声。相反,做一个回报。