Skip to content

Instantly share code, notes, and snippets.

@mstaack
Forked from cebe/snippet.php
Last active August 29, 2015 14:20
Show Gist options
  • Save mstaack/997dea247a05f99d2091 to your computer and use it in GitHub Desktop.
Save mstaack/997dea247a05f99d2091 to your computer and use it in GitHub Desktop.
<?php
// ...
$runner=new CConsoleCommandRunner();
$runner->commands=array(
'commandName' => array(
'class' => 'application.commands.myCommand',
),
);
ob_start();
$runner->run(array(
'yiic',
'idbrights',
));
echo nl2br(htmlentities(ob_get_clean(), null, Yii::app()->charset));
Yii::app()->end();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment