Created
February 20, 2017 09:16
-
-
Save peerax/a8f1a1257b7fca8542a907d8b6b2ea65 to your computer and use it in GitHub Desktop.
Yii Active record to json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$models=Bla::model()->findAll(); | |
$data=array_map(create_function('$m','return $m->getAttributes(array(\'id\',\'name\'));'),$models); | |
echo json_encode($data); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment