标签: php
我在函数中调用表时需要更改列名
<?php $ordertype = array("ASC", "DESC");?>
当代码使用ASC和DESC作为变量时,如何用“ASC”和“DESC”替换另一个单词?
答案 0 :(得分:0)
你可以这样做:
$ordertype[$newkey] = $ordertype[$oldkey]; unset($ordertype[$oldkey]);