How can I convert the result of Trips::model()->findAll() to an array?
Trips::model()->findAll()
Use DAO for arrays
$array = Yii::app()->db->createCommand('SELECT * FROM tbl')->queryAll();