|
|
|
เช็คค่าซ้ำ php array นำผลรวมค่า duplicate ซ้ำมารวมกัน รบกวนช่วยชี้แนะหน่อยครับ |
|
|
|
|
|
|
|
Code (PHP)
sort($arrayName);
$new = array();
foreach ($arrayName as $k => $v) {
if (array_key_exists($k, $new)) {
$new[$k] += $v;
} else {
$new[$k] = $v;
}
}
|
|
|
|
|
Date :
2015-10-02 12:27:22 |
By :
555 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
function sumoutarray($array,$fnumber,$money){
$result = array ();
foreach ( $array as $item ) {
$id = $item->$fnumber;
if (isset ( $result [$id] )) {
$result [$id] +=$item->$money;
} else {
$result [$id] = $item->$money;
}
}
return $result;
}
ได้แล้วครับ แบบนี้
|
|
|
|
|
Date :
2015-10-02 16:50:21 |
By :
keyword2015 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เยี่ยมครับ
|
|
|
|
|
Date :
2015-10-02 21:34:00 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|