PHP 클래스 vova07\console\ConsoleRunner

Usage: ... $cr = new ConsoleRunner(['file' => '@my/path/to/yii']); $cr->run('controller/action param1 param2 ...'); ... or use it like an application component: config.php ... components [ 'consoleRunner' => [ 'class' => 'vova07\console\ConsoleRunner', 'file' => '@my/path/to/yii' // or an absolute path to console file ] ] ... some-file.php Yii::$app->consoleRunner->run('controller/action param1 param2 ...');
상속: extends yii\base\Component
파일 보기 프로젝트 열기: vova07/yii2-console-runner-extension 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
$file Console application file that will be executed. Usually it can be yii file.

공개 메소드들

메소드 설명
init ( )
run ( string $cmd ) : boolean Running console command on background

보호된 메소드들

메소드 설명
isWindows ( ) : boolean Check operating system

메소드 상세

init() 공개 메소드

public init ( )

isWindows() 보호된 메소드

Check operating system
protected isWindows ( ) : boolean
리턴 boolean true if it's Windows OS

run() 공개 메소드

Running console command on background
public run ( string $cmd ) : boolean
$cmd string Argument that will be passed to console application
리턴 boolean

프로퍼티 상세

$file 공개적으로 프로퍼티

Console application file that will be executed. Usually it can be yii file.
public $file