7 lines
174 B
Batchfile
7 lines
174 B
Batchfile
|
|
@echo off
|
||
|
|
setlocal
|
||
|
|
set PORT=%~1
|
||
|
|
if "%PORT%"=="" set PORT=8000
|
||
|
|
for %%I in ("%~dp0..") do set "ROOT=%%~fI"
|
||
|
|
cd /d "%ROOT%"
|
||
|
|
php -S 127.0.0.1:%PORT% -t "%ROOT%" "%~dp0router.php"
|