如何更改结果集中的列名称并使用修改后的列名称在 PHP 中创建新结果集
示例:我当前的结果集:
array(7) {[0]=>array(2)
{ ["class_id"]=>string(1) "1"["class"]=>string(3)"1st"}
{ ["class_id"]=>string(1) "2"["class"]=>string(3)"2nd"}
{ ["class_id"]=>string(1) "3"["class"]=>string(3)"3rd"}
我想要一个新的结果集:
array(7) {[0]=>array(2)
{ ["new_id"]=>string(1) "1"["new_class"]=>string(3)"1st"}
{ ["new_id"]=>string(1) "2"["new_class"]=>string(3)"2nd"}
{ ["new_id"]=>string(1) "3"["new_class"]=>string(3)"3rd"}
我不希望这影响我的数据库中的列名称。仅结果集。
Example: my current result set:
array(7) {[0]=>array(2)
{ ["class_id"]=>string(1) "1"["class"]=>string(3)"1st"}
{ ["class_id"]=>string(1) "2"["class"]=>string(3)"2nd"}
{ ["class_id"]=>string(1) "3"["class"]=>string(3)"3rd"}
I want a new result set as :
array(7) {[0]=>array(2)
{ ["new_id"]=>string(1) "1"["new_class"]=>string(3)"1st"}
{ ["new_id"]=>string(1) "2"["new_class"]=>string(3)"2nd"}
{ ["new_id"]=>string(1) "3"["new_class"]=>string(3)"3rd"}
I dont want this to affect the column names in my database. only the result set.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
向我们展示您的查询.. 例如,如果您正在执行以下查询:
将其更改为:
在查询中更改它无疑是最好的方法,因为您无需执行任何额外操作在 PHP 中工作,但是当然您也可以在 PHP 中修改它们。
请注意,这些方法都不会影响您的数据库列。唯一的方法是通过 ALTER|MODIFY TABLE 语句。
Show us your query.. If you're doing, for example, the following query:
Change it to this:
Changing it in the query is hands-down the best way to do it, as you're not having to do any extra work within PHP, however you could also amend them in PHP, of course.
Note that neither of these methods would affect your database columns. The only way to do that would be via an
ALTER|MODIFY TABLE
statement.试试这个
try this
在foreach循环中。使用现有结果集中所需的列创建一个新数组。
In foreach cycle. Create a new array with needed to you colums from existing result set.