I have a data blob that when unserialized looks similiar to the following:
Array (
[profile] => Array (
[name] => Array (
[firstName] => Slug
[midName] => Foo
[lastName] => Bar
[formatted] => Slug Foo Bar )
[displayName] => Slug
)
)
and a table that stores the paths to these values as such:
['profile']['name']['firstName'],
['profile']['name']['lastName'],
...
['profile']['displayName']
I'd like to loop through the list of paths and retrieve values for a specific array, but can't seem to get my head around how to construct the array and path to get to the value:
$pathlist = array(
['profile']['name']['firstName'],
['profile']['name']['midName'],
['profile']['name']['lastName'],
['profile']['displayName']
);
$user = array(
[profile] => array (
[name] => array (
[firstName] => Slug
[midName] => Foo
[lastName] => Bar
),
[displayName] => Slug
)
);
foreach ($pathlist as $path) {
// display value using user array and pathitem
echo $user$path;
}
Anyone have any suggestions?
Thanks.