PHP code example of phramz / staticfiles
1. Go to this page and download the library: Download phramz/staticfiles library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
phramz / staticfiles example snippets
use Symfony\Component\HttpFoundation\Request;
// your static files will be served from this folder
$webroot = '/var/www';
// if we cannot guess the files mime-type we'll use this default
$defaultMimetype = 'application/octed-stream';
// files with the following extensions will not be delivered. We'll get a 404 instead.
$exclude = ['php', 'key'];
// let's build our application
$app = new Phramz\Staticfiles\HttpServer($webroot, $defaultMimetype, $exclude);
// dispatch the request
$request = Request::createFromGlobals();
$response = $app->handle($request);
$response->send();
// and shutdown
$app->terminate($request, $response);
bash
$ curl -sS https://getcomposer.org/installer | php
$ php composer.phar