Foreach through a large table using Yii ActiveRecord - “out of memory” errors
问题 I have a website on Yii Framework and I want to search a table for matching words. I keep getting "out of memory" (it is a large table). I try this code but it keeps loading the page $dataProvider = new CActiveDataProvider('Data'); $iterator = new CDataProviderIterator($dataProvider); foreach($iterator as $data) { echo $data->name."\n"; } So I try this code but it keeps limiting the result to 10: $dataProvider = new CActiveDataProvider('Data'); $iterator = new CDataProviderIterator(