1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | <?php namespace app\api\controller\v1; use app\api\validate\IDCollection; class Theme { /** * @url /theme?ids=id1,id2,id3... * @return 一组theme模型 */ public function getSimpleList( $ids = '' ){ ( new IDCollection()) -> goCheck(); return "success" ; } } |
(new IDCollection()) -> goCheck(); //这行报错的