本文介绍了在数组中添加值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想将$ m [2]中的数字相加,得出在线玩家总数。
I would like to add the numbers up in the array $m[2] for a total number of players online.
最简单的方法是什么,所以我有变量$ total?
Whats the simplest way to do that, so I have the variable $total?
$c = curl_init();
curl_setopt_array($c, array(
CURLOPT_URL => 'http://www.bungie.net/stats/reach/online.aspx',
CURLOPT_RETURNTRANSFER => true,
));
$r = curl_exec($c);
curl_close($c);
preg_match_all('|([\w\s]+)</a> </h4>\s*([0-9,]+) Players|s', $r, $m);
$teams = array_combine($m[1], $m[2]);
foreach ($m[2] as &$v) $v = str_replace(',','',$v);
echo '<pre>'.print_r($m[2],1).'</pre>';
推荐答案
吗?
这篇关于在数组中添加值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!