Change an associative array into an indexed array / get an Zend_Table_Row_Abstract as non-associative - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T17:52:59Zhttp://stackoverflow.com/feeds/question/1065131http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1065131/change-an-associative-array-into-an-indexed-array-get-an-zendtablerowabstrac0Change an associative array into an indexed array / get an Zend_Table_Row_Abstract as non-associativeEthan2009-06-30T18:10:19Z2009-07-18T22:37:12Z
<p>Hi out there in Stackland. I was wondering if there was either a function or an easy way to change an associative array into an indexed array.</p>
<p>To elaborate, I'm using the Zend framework, and I've got a point in my site where I take out a row of an SQL table as an associative array. I've passed it to javascript via an echoed in JSON. However, I've noticed that I can see the names of my database's columns in Firebug. Having outsiders know the names of your tables and columns is a big security no-no, so I'd like to change it from </p>
<pre><code>SQLarray[user_id]
SQLarray[block_id]
SQLarray[b_price] etc.
</code></pre>
<p>to</p>
<pre><code>SQLarray[0]
SQLarray[1]
SQLarray[2] etc.
</code></pre>
<p>Is there a good way to do this?</p>
<p>It would also work to be able to have a Zend_Table_Abstract->fetchAll() return a non-associative array, but I don't think that's possible. Thanks for your help!</p>
http://stackoverflow.com/questions/1065131/change-an-associative-array-into-an-indexed-array-get-an-zendtablerowabstrac/1065280#10652802Answer by Ian Elliott for Change an associative array into an indexed array / get an Zend_Table_Row_Abstract as non-associativeIan Elliott2009-06-30T18:40:06Z2009-06-30T18:40:06Z<p>Is pure php ok?</p>
<pre><code>array_values($array)
</code></pre>
<p><a href="http://us2.php.net/manual/en/function.array-values.php" rel="nofollow">Source</a></p>