Is there an easy way for me to get the values from this array hash? I'm using it all the time and would like to use something without iterating/ checking values?
$node[field_cw_days] = Array
(
[0] => Array
(
[value] => mon
)
[1] => Array
(
[value] => wed
)
[2] => Array
(
[value] => fri
)
)
Something like this?
$days = implode('-', array_values(array_merge_recursive($days_array, (array)'')));
Thanks for any help