Skip to content

Instantly share code, notes, and snippets.

@markembling
Created May 5, 2012 16:01
Show Gist options
  • Save markembling/2603611 to your computer and use it in GitHub Desktop.
Save markembling/2603611 to your computer and use it in GitHub Desktop.
Allow the PHP 5.4 built-in web server to serve a Zend Framework application.
cd path/to/project/public
php -S localhost:8080 index.php
<?php
// PHP 5.4 built-in web server - do not serve static files. In an Apache setup,
// this is handled via the .htaccess file.
if (preg_match('/\.(?:png|jpg|jpeg|gif|css|js)$/', $_SERVER["REQUEST_URI"]))
return false;
// Define path to application directory
defined('APPLICATION_PATH')
|| define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../application'));
// Define application environment
defined('APPLICATION_ENV')
|| define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'production'));
// Ensure library/ is on include_path
set_include_path(implode(PATH_SEPARATOR, array(
realpath(APPLICATION_PATH . '/../library'),
get_include_path(),
)));
/** Zend_Application */
require_once 'Zend/Application.php';
// Create application, bootstrap, and run
$application = new Zend_Application(
APPLICATION_ENV,
APPLICATION_PATH . '/configs/application.ini'
);
$application->bootstrap()
->run();
@vsanasc
Copy link

vsanasc commented Feb 21, 2014

This don't work!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment