是否可以按自定义数组对行进行排序 ids
从另一张table或者其他什么地方给的。
$str = "5,2,3,6,911,18,118,65,985,15...";
$arr = explode(',', $str);
function get_titles($status){
global $db;
$sql = "select * from arts where status = :astatus order by " . $arr . " asc";
$st = $db->prepare($sql);
$st->execute([":astatus" => $status]);
...
}
1条答案
按热度按时间wj8zmpe11#
如果你想定制的话
id
订单。。。