我有这个函数,它给我一个数字的输出。 (这个数字是我从iphone主题下载的总量。) 因为代码必须提出这么多请求,所以它会非常缓慢地加载页面。 对于我来说,将代码加载到变量中的最佳方法是什么,而不是在第二页刷新时调用它。所以它需要花费这么长时间才能加载?
或任何其他方法都可以。我只是希望它不需要这么长时间来加载!
这也不在我的服务器上,所以我不能使用$ .ajax
<?php
function all_downloads() {
$allThemes = array(
'com.modmyi.batterytheme',
'com.modmyi.connectiontheme',
'com.modmyi.icontheme',
'com.modmyi.percenttheme',
'com.modmyi.statusnotifiertheme',
'com.modmyi.cnote',
'com.modmyi.iaccescnotekb',
'com.modmyi.cnotelite',
'com.modmyi.multibrowsericon',
'com.modmyi.changeappstoreiconwithinstallous'
);
$total = 0;
foreach($allThemes as $com_modmyi){
$theme = file_get_contents( "http://modmyi.com/cstats/index.php?package=".$com_modmyi.'&output=number');
$theme = str_replace(",","", $theme);
$almost_done += $theme;
$rock_your_phone = 301; //From c-note and Multi Lock Screen Theme on Rock Your Phone
$total = ($almost_done + $rock_your_phone);
}
echo number_format($total);
}
?>