mirror of
https://github.com/cwinfo/envayasms.git
synced 2024-11-08 18:00:27 +00:00
46 lines
1.0 KiB
PHP
Executable File
46 lines
1.0 KiB
PHP
Executable File
<?php
|
|
|
|
/*
|
|
* Example standalone HTTP server that routes all .php URIs to PHP files under ./www,
|
|
* and routes all other URIs to static files under ./www.
|
|
*
|
|
* index.php is used as the directory index.
|
|
*
|
|
* Just run it on the command line like "php server.php".
|
|
*/
|
|
|
|
require_once __DIR__ . '/httpserver/httpserver.php';
|
|
|
|
class ExampleServer extends HTTPServer
|
|
{
|
|
function __construct()
|
|
{
|
|
parent::__construct(array(
|
|
'port' => 8002,
|
|
));
|
|
}
|
|
|
|
function route_request($request)
|
|
{
|
|
$uri = $request->uri;
|
|
|
|
$doc_root = __DIR__ . '/www';
|
|
|
|
if (preg_match('#/$#', $uri))
|
|
{
|
|
$uri .= "index.php";
|
|
}
|
|
|
|
if (preg_match('#\.php$#', $uri))
|
|
{
|
|
return $this->get_php_response($request, "$doc_root$uri");
|
|
}
|
|
else
|
|
{
|
|
return $this->get_static_response($request, "$doc_root$uri");
|
|
}
|
|
}
|
|
}
|
|
|
|
$server = new ExampleServer();
|
|
$server->run_forever(); |