16 lines
319 B
Batchfile
Executable File
16 lines
319 B
Batchfile
Executable File
@echo off
|
|
|
|
rem -------------------------------------------------------------
|
|
rem Yii command line init script for Windows.
|
|
rem -------------------------------------------------------------
|
|
|
|
@setlocal
|
|
|
|
set YII_PATH=%~dp0
|
|
|
|
if "%PHP_COMMAND%" == "" set PHP_COMMAND=php.exe
|
|
|
|
"%PHP_COMMAND%" "%YII_PATH%init" %*
|
|
|
|
@endlocal
|