Aşağıdaki özelliklere sahip bir dizi vardır:
Array
(
[0] => Array
(
[project] => test proposal
[type] => pending
[0] => 10,000
[1] => 10,000
[2] => 5,000
[3] => 0
[4] => 0
[5] => 0
[6] => 0
[7] => 0
[8] => 0
[9] => 0
[10] => 0
[11] => 0
)
[1] => Array
(
[project] => test 3
[type] => won
[0] => 0
[1] => 0
[2] => 20,000
[3] => 20,000
[4] => 10,000
[5] => 0
[6] => 0
[7] => 0
[8] => 0
[9] => 0
[10] => 0
[11] => 0
)
[2] => Array
(
[project] => Test 3
[type] => pending
[0] => 8,333
[1] => 8,333
[2] => 8,333
[3] => 0
[4] => 0
[5] => 0
[6] => 0
[7] => 0
[8] => 0
[9] => 0
[10] => 0
[11] => 0
)
)
Ben başkalarının tüm değerleri birleştiren diziye bir son öğeyi itmek istiyorum, proje ve tip boş olabilir. Yani sonuç olurdu:
Array
(
[0] => Array
(
[project] => test proposal
[type] => pending
[0] => 10,000
[1] => 10,000
[2] => 5,000
[3] => 0
[4] => 0
[5] => 0
[6] => 0
[7] => 0
[8] => 0
[9] => 0
[10] => 0
[11] => 0
)
[1] => Array
(
[project] => test 3
[type] => won
[0] => 0
[1] => 0
[2] => 20,000
[3] => 20,000
[4] => 10,000
[5] => 0
[6] => 0
[7] => 0
[8] => 0
[9] => 0
[10] => 0
[11] => 0
)
[2] => Array
(
[project] => Test 3
[type] => pending
[0] => 8,333
[1] => 8,333
[2] => 8,333
[3] => 0
[4] => 0
[5] => 0
[6] => 0
[7] => 0
[8] => 0
[9] => 0
[10] => 0
[11] => 0
)
[3] => Array
(
[project] =>
[type] =>
[0] => 18,333
[1] => 18,333
[2] => 33,333
[3] => 20,000
[4] => 10,000
[5] => 0
[6] => 0
[7] => 0
[8] => 0
[9] => 0
[10] => 0
[11] => 0
)
)