Skip to content

Instantly share code, notes, and snippets.

View tibinvpaul's full-sized avatar

Tibin Paul tibinvpaul

  • www.perk.com
  • Bangalore
View GitHub Profile
@ckressibucher
ckressibucher / cliserver.php
Last active November 10, 2023 17:58
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;