我有一些这样的代码:
{"mW1":"mw1","hello":"Hello"}
在函数CombineTypeValue()之后,我要拥有的数组$ typeValue中的元素:
<?php
function combineTypeValue($typeValueArray){
//coding here ...
}
$typeValue=array("0x80","0x20","0x200","0x1000000");
$typeValue=combineTypeValue($typeValue);
?>
1。输出数组元素由第一个元素求和。
2。元素顺序不重要。
3。该函数可以处理不同长度的数组。
我该怎么办?