I'm trying to build a PHP site and I'm wanting to test my PHP files without uploading them to my host. Basically testing them on my own machine before I upload them. How do I do that?
-
1use XAMPP and install PHP server. sometimes if skype uses port 80 & 443, apache server will not launch. Complete solution is provided here http://feelzdroid.com/2015/12/install-php-server-local-machine.html – Naruto Jan 13 '16 at 10:06
14 Answers
PHP 5.4 and later have a built-in web server these days.
You simply run the command from the terminal:
cd path/to/your/app
php -S 127.0.0.1:8000
Then in your browser go to http://127.0.0.1:8000 and boom, your system should be up and running. (There must be an index.php or index.html file for this to work.)
You could also add a simple Router
<?php
// router.php
if (preg_match('/\.(?:png|jpg|jpeg|gif)$/', $_SERVER["REQUEST_URI"])) {
return false; // serve the requested resource as-is.
} else {
require_once('resolver.php');
}
?>
And then run the command
php -S 127.0.0.1:8000 router.php
References:
- 5,299
- 2
- 13
- 23
-
13In case anyone was wondering, the -S and a reference to other commands can be found at the link below. In particular, -S means "Run with built-in web server." http://php.net/manual/en/features.commandline.options.php – calipoop Jun 15 '17 at 15:37
-
but what about the Databases it should have place to be stored in! – Yousef Altaf Sep 10 '17 at 14:03
-
4@YousefAltaf the OP does not specify weather or not they wanted a database to be used. They asked for a PHP Server and this simply is a PHP Server. If you want to run a MYSQL Server or PostGres Server then that would be another question and you can configure your PHP Application to use said server. Also for quick development purposes a SQLITE DB should do. – GardenRouteGold Oct 02 '17 at 14:12
-
1PHP Built-in web server does not support parallel request: `The web server runs a only one single-threaded process, so PHP applications will stall if a request is blocked.`. This may cause some performance problem. – vikyd Apr 26 '18 at 02:59
-
2@vikyd this isn't mean't for a full fledged application development it's just a quick way to test / debug features or code IMHO. – GardenRouteGold Nov 16 '18 at 09:26
-
@Dark-Reaper- ,yeah , it should be simple, but without supporting `parallel request` it is not a very `quick` way. – vikyd Nov 16 '18 at 10:55
Install and run XAMPP: http://www.apachefriends.org/en/xampp.html
- 17,846
- 5
- 53
- 63
-
1Just adding this article for anyone who is going for XAMPP/MAMP: http://www.dwuser.com/education/content/why-you-need-a-testing-server-and-how-to-do-it/ – Richard Fu Aug 07 '17 at 09:24
-
73Using `php -S localhost:8000` is an easier choice, without installing additional stuff. – S. Wu May 26 '19 at 06:04
-
6@alanwsx, replying to your comment more than one year later, thanks for your comment to my answer more than 10 years ago. `php -S` was only added in php 5.4 which was released in 2012. So when I wrote my answer in 2009, there was no such option. And as of today in the year of 2020, the time machine has not been invented yet. BTW the topic of the year 2020 is COVID-19, just to remind you in case you reply years from today. Bless StackOverflow for its long life. – Lukman Oct 22 '20 at 01:08
-
1
-
-
1@Lukman & @alanwsx) But I see StackOverflow not only as a forum but also as a reference book. In Future, there will be others who are looking for that solution, hit similiar or even same problems...that's why...Well, done...! – Sedat Kilinc Jan 30 '21 at 21:28
This is a simple, sure fire way to run your php server locally:
php -S 0.0.0.0:<PORT_NUMBER>
Where PORT_NUMBER is an integer from 1024 to 49151
Example: php -S 0.0.0.0:8000
Notes:
If you use
localhostrather than0.0.0.0you may hit a connection refused error.If want to make the web server accessible to any interface, use
0.0.0.0.If a URI request does not specify a file, then either index.php or index.html in the given directory are returned.
Given the following file (router.php)
<?php
// router.php
if (preg_match('/\.(?:png|jpg|jpeg|gif)$/', $_SERVER["REQUEST_URI"])) {
return false; // serve the requested resource as-is.
} else {
echo "<p>Welcome to PHP</p>";
}
?>
Run this ...
php -S 0.0.0.0:8000 router.php
... and navigate in your browser to http://localhost:8000/ and the following will be displayed:
Welcome to PHP
Reference:
- 29,404
- 1
- 49
- 35
-
6Thanks for the tip regarding 0.0.0.0 , what a magic fix it was - should be incorporated into the accepted answer or something... – calipoop Jun 15 '17 at 18:08
-
BTW `0.0.0.0:8000` will blind the port `8000` to PHP built-in server only on all networks address, dependence on your server configuration this may solve you problem or create it fro you, – Salem Sep 15 '21 at 12:38
-
I often use following command to spin my PHP Laravel framework :
$ php artisan serve --port=8080
or
$ php -S localhost:8080 -t public/
In above command : - Artisan is command-line interface included with Laravel which use serve to call built in php server
To Run with built-in web server.
php -S <addr>:<port> -T
Here,
-S : Switch to Run with built-in web server.
-T : Switch to specify document root for built-in web server.
- 10,566
- 5
- 53
- 51
I use WAMP. One easy install wizard, tons of modules to for Apache and PHP preconfigured and easy to turn on and off to match your remote config.
- 12,613
- 12
- 59
- 95
If you want an all-purpose local development stack for any operating system where you can choose from different PHP, MySQL and Web server versions and are also not afraid of using Docker, you could go for the devilbox.
The devilbox is a modern and highly customisable dockerized PHP stack supporting full LAMP and MEAN and running on all major platforms. The main goal is to easily switch and combine any version required for local development. It supports an unlimited number of projects for which vhosts and DNS records are created automatically. Email catch-all and popular development tools will be at your service as well. Configuration is not necessary, as everything is pre-setup with mass virtual hosting.
Getting it up and running is pretty straight-forward:
# Get the devilbox
$ git clone https://github.com/cytopia/devilbox
$ cd devilbox
# Create docker-compose environment file
$ cp env-example .env
# Edit your configuration
$ vim .env
# Start all containers
$ docker-compose up
Links:
- Github: https://github.com/cytopia/devilbox
- Website: http://devilbox.org
- 313
- 4
- 15
AppServ is a small program in Windows to run:
- Apache
- PHP
- MySQL
- phpMyAdmin
It will also give you a startup and stop button for Apache. Which I find very useful.
- 425
- 1
- 4
- 13
If you are using Windows, then the WPN-XM Server Stack might be a suitable alternative.
- 37,346
- 13
- 106
- 132
Use Apache Friends XAMPP. It will set up Apache HTTP server, PHP 5 and MySQL 5 (as far as I know, there's probably some more than that). You don't need to know how to configure apache (or any of the modules) to use it.
You will have an htdocs directory which Apache will serve (accessible by http://localhost/) and should be able to put your PHP files there. With my installation, it is at C:\xampp\htdocs.
- 35,920
- 39
- 124
- 170
If you have a local machine with the right software: web server with support for PHP, there's no reason why you can't do as you describe.
I'm doing it at the moment with XAMPP on a Windows XP machine, and (at home) with Kubuntu and a LAMP stack.
- 14,290
- 4
- 30
- 46
you can create your own server in php using code as well!
<?php
set_time_limit(0);
$address = '127.0.0.1';
$port =4444;
$server = '$address + $port';
// <-- Starts Server
$sock = socket_create(AF_INET, SOCK_STREAM, 0);
socket_bind($sock, $address, $port) or die('Could not bind to address');
echo "\n Server is running on port $port waiting for connection... \n\n";
while(1)
{
socket_listen($sock);
$client = socket_accept($sock);
$input = socket_read($client, 443);
$incoming = array();
$incoming = explode("\r\n", $input);
$fetchArray = array();
$fetchArray = explode(" ", $incoming[0]);
$file = $fetchArray[1];
if($file == "/"){
$file = "src/browser.php";// this file is open with server when it starts!
} else {
$filearray = array();
$filearray = explode("/", $file);
$file = $filearray[1];
}
echo $fetchArray[0] . " Request " . $file . "\n";
// <-- Control Header
$output = "";
$Header = "HTTP/1.1 200 OK \r\n" .
"Date: Fri, 31 Dec 1999 23:59:59 GMT \r\n" .
"Content-Type: text/html \r\n\r\n";
$Content = file_get_contents($file);
$output = $Header . $Content;
socket_write($client,$output,strlen($output));
socket_close($client);
}
print('server running..');
run this code then open browser to localhost:443 or whichever port you chose
- 21
- 6