$order_ids='',表示$order_ids是字符串,不是数组
foreach ($order_ids as $key=>$order_id){ //TODO}
这样写是错的,因为$order_ids是字符串,不是数组,php不像java给出错误提示。
php是弱类型。