Skip to content

Instantly share code, notes, and snippets.

@jamband
Last active October 2, 2015 23:07
Show Gist options
  • Save jamband/2341916 to your computer and use it in GitHub Desktop.
Save jamband/2341916 to your computer and use it in GitHub Desktop.
Yii Framework: TestCommand.php
<?php
class TestCommand extends CConsoleCommand
{
public function run()
{
$c = new CDbCriteria();
$model = new Hoge();
$model->name = 'test' . $model->count($c);
$model->save(false);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment