大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
使用foreach可以实现,例如数组在$arr中,那么用下面的办法合计:
十载专注成都网站制作,成都企业网站建设,个人网站制作服务,为大家分享网站制作知识、方案,网站设计流程、步骤,成功服务上千家企业。为您提供网站建设,网站制作,网页设计及定制高端网站建设服务,专注于成都企业网站建设,高端网页制作,对成都搅拌罐车等多个领域,拥有多年的网站维护经验。
$sum=0;
foreach ($arr as $a) $sum+=$a['amount'];
echo $sum;
//摘自php5手册
?php
$a = array(2, 4, 6, 8);
echo "sum(a) = " . array_sum($a) . "\n";
$b = array("a" = 1.2, "b" = 2.3, "c" = 3.4);
echo "sum(b) = " . array_sum($b) . "\n";
?
涉及到进位问题,请问LZ, z+1=?
如果z+1=a的话:
?php
$str = 'abcd';
$match = 225;
// 基础数据
// a-1,b-2,c-3,d-4....以此类推
for ($i=1; $i=26; $i++) {
$base[$i] = chr(ord('a') + $i-1);
}
// 将字符串打散成数组
$str_new = array();
for ($i=0; $istrlen($str); $i++) {
$a = strtolower(substr($str, $i, 1));
foreach ($base as $key=$value) {
if ($a == $value) {
$str_new[] = $key;
}
}
}
// 执行
$temp = array();
$temp = do_add($str_new, $match, $temp);
// 将数组重新还原成字符串
$result = '';
for ($i=count($temp)-1; $i=0; $i--) {
$a = $temp[$i];
foreach ($base as $key=$value) {
if ($a == $key) {
$result .= $value;
}
}
}
// 输出
echo $result;
// 2个基础函数
function do_add($data_array, $match, $result) {
$result[] = ($data_array[count($data_array)-1] + $match) % 26 == 0 ? 26 : ($data_array[count($data_array)-1] + $match) % 26;
$match = ($data_array[count($data_array)-1] + $match) / 26 = 1 ? 0 : floor(($data_array[count($data_array)-1] + $match) / 26);
array_pop($data_array);
if (count($data_array) != 0) {
return do_add($data_array, $match, $result);
} else {
$result = do_add_plus($match, $result);
return $result;
}
}
function do_add_plus($match, $result) {
$result[] = $match % 26 == 0 ? 1 : $match % 26;
$match = $match / 26 = 1 ? 0 : floor($match / 26);
if ($match 0) {
return do_add_plus($match, $result);
} else {
return $result;
}
}
?
======================================================
这个就是看你数学的水平了 1加到10公共有5个11,如1+10=11;2+9=11;3+8=11。。。。这个公式用代码实现就是?php
$a=1;
$b=10;
$num=($a+$b)*($b/2);
?
数据库查询运算:数字相加累加函数sum() ,两书相加直接+,字符相加用CONCAT();
如果是php处理查询结果:相加就是+ ,字符相加就‘.’连接变量;
你的问题描述不清楚,所以只能按字面理解有以上的方法
select sum("金额字段") as cmoney from 表 where 1;\x0d\x0a\x0d\x0a然后你输出cmoney这个就是相加的效果。\x0d\x0a还有一种比较差点的方法就是:\x0d\x0a 1、select 金额字段 from 表 where 1;\x0d\x0a2、获取你得到的所有信息,然后foreach 把所有的金额相加就行,\x0d\x0a 实例:$sql = "select money from cg_money where 1";\x0d\x0a $query = mysql_query($sql);\x0d\x0a$m = 0;\x0d\x0a\x0d\x0awhile($rs = mysql_fetch_array($sql)){\x0d\x0a $m = $m+$rs['money'];\x0d\x0a\x0d\x0a}\x0d\x0aecho $m;这个也是可以获取所有的money的,就是费事了点,还是上面的呢个方法好滴,也就是楼上的呢个方法