Skip to content

Instantly share code, notes, and snippets.

View EuphoryX1's full-sized avatar

TAKANO,Noriyuki EuphoryX1

  • Tokyo,JAPAN
View GitHub Profile
@ckressibucher
ckressibucher / cliserver.php
Last active August 27, 2024 12:44
Router script for PHP built in server
<?php
// public/cliserver.php (router script)
if (php_sapi_name() !== 'cli-server') {
die('this is only for the php development server');
}
if (is_file($_SERVER['DOCUMENT_ROOT'].'/'.$_SERVER['SCRIPT_NAME'])) {
// probably a static file...
return false;