我要找的东西很简单,但我不知道在谷歌上搜索什么。
我寻找一个简单的 PHP 命令来给我我想要的东西而不使用循环:
$myarray= [
['id'=>5,'username'=>'aaa','password'=>'.....'],
['id'=>6,'username'=>'bbb','password'=>'.....'],
['id'=>7,'username'=>'ccc','password'=>'.....'],
['id'=>8,'username'=>'ddd','password'=>'.....'],
];
我想获得什么:
array('aaa','bbb','ccc','ddd')
有什么简单的方法吗?