我有这样的数据,
field1,field2
test,11
test,3
test,14
test,200
test,8
我想总结所有field2。我使用 shell_exec。
$execute = 'x=0;for i in `cut -d\',\' -f2 /app/tibs/tosweb/CCS1/tos/temp/test2.txt`; do let x+=i; echo $x; done';
$output = shell_exec($execute);
echo "<pre>".var_export($output, TRUE)."</pre>\\n";
我不明白,为什么 x 的值总是返回 0?请帮助我的朋友,谢谢你。
*对不起我的英语不好:P