骑驴找蚂蚁

全干工程师

phalcon模型中绑定数组参数类型

<?php


$sets = Example::find([
    "id IN ({id:array})",
    "bind" => ["id" => [1, 2, 3]]
]);

foreach($sets as $set) {
   ...
}

留言