i have an array like this
Array
(
[0] => Array
(
[s_id] => 4
[si_id] => sec_1
[d_id] => dep_4
[s_name] => sec1
[s_location] => LA
[s_visibility] => yes
[s_created_date] => 1273639343
[s_last_updated_date] => 1273639343
[s_created_by] => someone
[s_last_updated_by] => everyone
)
)
now i want to extract array[0] into an array… means i want this
Array
(
[s_id] => 4
[si_id] => sec_1
[d_id] => dep_4
[s_name] => sec1
[s_location] => LA
[s_visibility] => yes
[s_created_date] => 1273639343
[s_last_updated_date] => 1273639343
[s_created_by] => someone
[s_last_updated_by] => everyone
)
how do i get above results?
You can do:
This will create a new array with the same key-value pairs.
If you do not want to create a new array and want the new array to refer to the existing array in the
$oldArrayyou can do:Any changes made to
$newArraywill also change$oldArrayin this case.