将关联数组更改为索引数组/获取 Zend_Table_Row_Abstract 作为非关联数组
你好,在斯塔克兰。 我想知道是否有一个函数或一种简单的方法可以将关联数组更改为索引数组。
详细地说,我正在使用 Zend 框架,并且我在我的站点中有一个点,我将 SQL 表的一行作为关联数组取出。 我已通过 JSON 中的回显将其传递给 javascript。 但是,我注意到我可以在 Firebug 中看到数据库列的名称。 让外部人员知道您的表和列的名称是一个很大的安全禁忌,因此我想将其更改为
SQLarray[user_id]
SQLarray[block_id]
SQLarray[b_price] etc.
有
SQLarray[0]
SQLarray[1]
SQLarray[2] etc.
没有好的方法可以做到这一点?
能够让 Zend_Table_Abstract->fetchAll() 返回非关联数组也可以,但我认为这是不可能的。 感谢您的帮助!
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.
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
SQLarray[user_id]
SQLarray[block_id]
SQLarray[b_price] etc.
to
SQLarray[0]
SQLarray[1]
SQLarray[2] etc.
Is there a good way to do this?
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!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您不想使用内置的 PHP 函数,您可以使用这段简单的代码。
You could use this simple piece of code, if you do not want to use the inbuilt PHP function.
纯php可以吗?
来源
Is pure php ok?
Source
定义函数
将关联数组作为参数传递,它将转换为数组的默认索引。 例如:在调用函数后,我们有
Array('2014-04-30'=>43,'2014-04-29'=>41)
,数组将是数组(0=>43,1=>41)
。define function
Pass the associative array as a parameter and it will convert into the default index of the array. For example: we have
Array('2014-04-30'=>43,'2014-04-29'=>41)
after the call to the function the array will beArray(0=>43,1=>41)
.对于多层数组,我使用这个:
它将这个:变成
这个:
for multi layered array i use this:
it turns this:
into this :