Yii2: Get random model. Получение случайной модели.
$max = Post::find()->count(); $offset = rand(0, $max - 1); return $Post::find()->offset($offset)->one();