Extracting a subset of values from an associative array (php) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T01:50:33Z http://stackoverflow.com/feeds/question/569379 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/569379/extracting-a-subset-of-values-from-an-associative-array-php 3 Extracting a subset of values from an associative array (php) faB 2009-02-20T12:16:05Z 2009-02-20T14:41:02Z <p>I want to do something seemingly very simple, but I can't find anything about it: simply extract a subset of an array similar to array_splice, but <em>using keys to retrieve the values</em> :</p> <pre><code>$data = array('personName' =&gt; 'John', 'personAge' =&gt; 99, 'personId' =&gt; 1, /* many more data I don't need here ... */); list($name, $age, $id) = array_splice_by_keys($data, array('personName', 'personAge', 'personId'); </code></pre> <p>If all else fails, isn't there a builtin function to filter an associative array by keys? For example:</p> <p><strong>$filteredArray = array__extract__keys__and__values($srcArray, $arrayOfWantedKeys);</strong></p> <pre><code>// create a new array with ONLY those key =&gt; values I need $wanted_values = array_extract_keys_and_values($data, array('personName', 'personAge', 'personId'); echo $wanted_values['personName']; </code></pre> <p>I guess the reason why I want to do the first one, is that I don't like to repeat associative array access all over my code, it would seem better optimized to copy the values that are used a lot (in a loop for example), into a local variable, plus it's much easier to type $name than $somearray['name'].</p> <p>EDIT: Thanks, I guess for use with list, the solution would be </p> <pre><code>list($x, $y, $z) = array_values(array_intersect_key($array, array_flip($wantedKeys))); </code></pre> <p>Intesresting use of array_flip!</p> http://stackoverflow.com/questions/569379/extracting-a-subset-of-values-from-an-associative-array-php/569426#569426 3 Answer by SilentGhost for Extracting a subset of values from an associative array (php) SilentGhost 2009-02-20T12:37:54Z 2009-02-20T12:37:54Z <p>in php version >= 5.1.0 you could use <code>array_intersect_key</code>:</p> <pre><code>$data = array('personName' =&gt; 'John', 'personAge' =&gt; 99, 'personId' =&gt; 1, 'test' =&gt; 23); $ex = array('personName'=&gt;0, 'personAge'=&gt;0, 'personId'=&gt;0); var_dump(array_intersect_key($data, $ex)); </code></pre> <p>values in <code>$ex</code> don't matter, they just have to be present.</p> http://stackoverflow.com/questions/569379/extracting-a-subset-of-values-from-an-associative-array-php/569502#569502 2 Answer by Tom Haigh for Extracting a subset of values from an associative array (php) Tom Haigh 2009-02-20T13:06:53Z 2009-02-20T13:06:53Z <p>Pretty much the same as SilentGhost's answer but this might be easier and also slower</p> <pre><code>array_intersect_key($array, array_flip($wantedKeys)); </code></pre>