很多时候我们只需要一张表里某个字段的值,组成的数组
$Channel = D('channel');$channelList = $Channel->order('user_name')->getField("source", true); //不带true只能查到一个值 echo json_encode($channelList); //输出 ["3333","2222","2301","1111","99901"]