I'm trying to set a value of a subkey as another value, but when I try to use $array['Key1']['FullPath'] it returns Array something. How can I solve that?
Thanks.
$array = Array(
'Key1' => Array(
'Path' => 'http://stackoverflow.com/',
'FullPath' => ['Path'] . ' something'
),
[...] //another arrays
);
'FullPath' => ['Path'] . ' something'$array['Key1']['FullPath']