如何獲取數組的一部分並追加值?獲取數組的一部分並追加值
我有一個測試陣列
Array
(
[name] => test
[sex] => male
[contests] =>
[polls] =>
[quotes] =>
[spouse] => ,57
[father] => ,55
[mother] => ,56
[brother] => ,1,3
)
我想利用來自配偶的數組元素的兄弟和獲得附加的所有值的字符串。
$test = ',57,55,56,1,3'
是否可以使用PHP
中的數組函數完成?
附加價值逐一? – 2012-03-21 11:12:20