$goods = array_values($goods);

$key = array_column($goods, 'cid');
array_multisort($key, SORT_DESC, $goods);

这样就根据cid 字段排序了