├── .gitignore ├── MIT-License ├── README.md ├── composer.json ├── example ├── global.inc.php ├── require_file.php ├── start ├── template │ └── test.html └── test.php └── lei.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /MIT-License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leizongmin/leiphp/HEAD/MIT-License -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leizongmin/leiphp/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leizongmin/leiphp/HEAD/composer.json -------------------------------------------------------------------------------- /example/global.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leizongmin/leiphp/HEAD/example/global.inc.php -------------------------------------------------------------------------------- /example/require_file.php: -------------------------------------------------------------------------------- 1 | require file
'; 4 | -------------------------------------------------------------------------------- /example/start: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | php -S localhost:8000 4 | -------------------------------------------------------------------------------- /example/template/test.html: -------------------------------------------------------------------------------- 1 |