$robots = Robots::find();
It can get all the records, but sometimes I want to ignore the first record, How to
I can't do it by SQL limit 1, x, because sometimes the first record can't be ignored
I try to do with array_shift($robots), It says $robots is not an array
can Robots::find() return with array?