


PHP 54 built-in web server web server ranking web server principle simple web server
PHP is a scripting language, which requires a PHP interpreter to analyze and run PHP files. When using PHP as a CGI to serve web requests, it needs to be embedded into some kind of web server, most commonly integrated into Apache or IIS. This means that before using PHP, you need to install Apache or IIS, and Correctly configure them and PHP integration parameters. Although this configuration has been standardized and the documentation is very rich, we still often encounter problems when installing Apache and PHP integration. Moreover, sometimes we just want to test a simple PHP feature and do not want to install and start the Apache service for this purpose. .
But according to the official documentation, this built-in web server is only for development and testing, and is not recommended for use in production environments. Because this server accepts and processes requests sequentially and cannot handle them concurrently.
This built-in web server is very convenient to use. You only need to execute the following command:
<ol><li><span><span>$ php -S localhost:8000 </span></span></li></ol>
Then you can access it. After starting in this way, the default web service directory is the current directory where the command is executed. If you do not want to use the current directory, you need to use the -t parameter to specify it.
Example #1 Start the Web server
<ol> <li><span><span>$ cd ~/public_html </span></span></li> <li><span>$ php -S localhost:8000 </span></li> </ol>
Terminal output information:
<ol> <li><span><span>PHP 5.4.0 Development Server started at Thu Jul 21 10:43:28 2011 </span></span></li> <li><span>Listening on localhost:8000 </span></li> <li><span>Document root is /home/me/public_html </span></li> <li><span>Press Ctrl-C to quit </span></li> </ol>
After requesting the http://localhost:8000/ and http://localhost:8000/myscript.html addresses, the terminal outputs information similar to the following :
<ol> <li><span><span>PHP 5.4.0 Development Server started at Thu Jul 21 10:43:28 2011 </span></span></li> <li><span>Listening on localhost:8000 </span></li> <li><span>Document root is /home/me/public_html </span></li> <li><span>Press Ctrl-C to quit. </span></li> <li><span>[Thu Jul 21 10:48:48 2011] ::1:39144 GET /favicon.ico - Request read </span></li> <li><span>[Thu Jul 21 10:48:50 2011] ::1:39146 GET / - Request read </span></li> <li><span>[Thu Jul 21 10:48:50 2011] ::1:39147 GET /favicon.ico - Request read </span></li> <li><span>[Thu Jul 21 10:48:52 2011] ::1:39148 GET /myscript.html - Request read </span></li> <li><span>[Thu Jul 21 10:48:52 2011] ::1:39149 GET /favicon.ico - Request read </span></li> </ol>
Example #2 Specify the root directory of the document when starting the web server
<ol> <li><span><span>$ cd ~/public_html </span></span></li> <li><span>$ php -S localhost:8000 -t foo/ </span></li> </ol>
Terminal display message:
<ol> <li><span><span>PHP 5.4.0 Development Server started at Thu Jul 21 10:50:26 2011 </span></span></li> <li><span>Listening on localhost:8000 </span></li> <li><span>Document root is /home/me/public_html/foo </span></li> <li><span>Press Ctrl-C to quit </span></li> </ol>
If you append a php script file after the startup command line, then this file will be treated as a "router" script. This script will be responsible for all HTTP requests. If this script returns FALSE when executed, the requested resource will be returned normally. If it is not FALSE, the content generated by this script will be displayed in the browser.
Example #3 Using router script
In this example, a request for an image will return the corresponding image, but a request for an HTML file will display "Welcome to PHP":
<ol> <li><span><span><?php </span></span></li><li><span>// router.php </span><span> </span></li><li><span>if</span><span> (preg_match(</span><span>'/\.(?:png|jpg|jpeg|gif)$/'</span><span>, </span><span>$_SERVER</span><span>[</span><span>"REQUEST_URI"</span><span>])) { </span></li><li><span>return</span><span> false; </span><span>// serve the requested resource as-is. </span><span> </span></li><li><span>} </span><span>else</span><span> { </span></li><li><span>echo</span><span> </span><span>"<p>Welcome to PHP</p>"</span><span>; </span></span></li> <li><span>} </span></li> <li><span>?> </span></li> </ol>
<ol><li><span><span>$ php -S localhost:8000 router.php </span></span></li></ol>
Example #4 Determine whether it is being used The built-in web server
adjusts the different behaviors of the same PHP router script in the built-in web server and the production server through program judgment:
<ol><li><span><span><?php </span></span></li><li><span>// router.php </span><span> </span></li><li><span>if</span><span> (php_sapi_name() == </span><span>'cli-server'</span><span>) { </span></li><li><span>/* route static assets and return false */</span><span> </span></li><li><span>} </span></li><li><span>/* go on with normal index.php operations */</span><span> </span></li><li><span>?> </span></span></li></ol>
<ol><li><span><span>$ php -S localhost:8000 router.php </span></span></li></ol>
This built-in web server can recognize some standard MIME type resources, and their extensions are : .css, .gif, .htm, .html, .jpe, .jpeg, .jpg, .js, .png, .svg, and .txt. Support for .htm and .svg extensions is only supported after PHP 5.4.4.
Example #5 Handling unsupported file types
If you want the web server to correctly handle unsupported MIME file types, do this:
<ol><li><span><span><?php </span></span></li><li><span>// router.php </span><span> </span></li><li><span>$path</span><span> = </span><span>pathinfo</span><span>(</span><span>$_SERVER</span><span>[</span><span>"SCRIPT_FILENAME"</span><span>]); </span></li><li><span>if</span><span> (</span><span>$path</span><span>[</span><span>"extension"</span><span>] == </span><span>"ogg"</span><span>) { </span></li><li><span>header(</span><span>"Content-Type: video/ogg"</span><span>); </span></li><li><span>readfile(</span><span>$_SERVER</span><span>[</span><span>"SCRIPT_FILENAME"</span><span>]); </span></li><li><span>} </span></li><li><span>else</span><span> { </span></li><li><span>return</span><span> FALSE; </span></li><li><span>} </span></li><li><span>?> </span></span></li></ol>
<ol><li><span><span>$ php -S localhost:8000 router.php </span></span></li></ol>
If you want to access the built-in web server remotely, Your startup command needs to be changed to the following:
Example #6 Remote access to this built-in web server
<ol><li><span><span>$ php -S 0.0.0.0:8000 </span></span></li></ol>
So you can remotely access this built-in web server through port 8000
The above has introduced the PHP 54 built-in Web server, including the content of the Web server. I hope it will be helpful to friends who are interested in PHP tutorials.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Overview of security auditing and event log management of web servers built on CentOS. With the development of the Internet, security auditing and event log management of web servers have become more and more important. After setting up a web server on the CentOS operating system, we need to pay attention to the security of the server and protect the server from malicious attacks. This article will introduce how to perform security auditing and event log management, and provide relevant code examples. Security audit Security audit refers to comprehensive monitoring and inspection of the security status of the server to promptly discover potential

Best Practices: Performance Tuning Guide for Building Web Servers on CentOS Summary: This article aims to provide some performance tuning best practices for users building web servers on CentOS, aiming to improve the performance and response speed of the server. Some key tuning parameters and commonly used optimization methods will be introduced, and some sample codes will be provided to help readers better understand and apply these methods. 1. Turn off unnecessary services. When building a web server on CentOS, some unnecessary services will be started by default, which will occupy system resources.

Permissions and access control strategies that you need to pay attention to before building a web server on CentOS. In the process of building a web server, permissions and access control strategies are very important. Correctly setting permissions and access control policies can protect the security of the server and prevent unauthorized users from accessing sensitive data or improperly operating the server. This article will introduce the permissions and access control strategies that need to be paid attention to when building a web server under the CentOS system, and provide corresponding code examples. User and group management First, we need to create a dedicated

The five types of web servers are: 1. IIS, a web server that allows publishing information on a public intranet or Internet; 2. Apache, an open source web server of the Apache Software Foundation; 3. WebSphere Application Server, a Web application server; 4. Tomcat is a Java-based Web application software container; 5. Lighttpsd is an open source Web server software.

Swoole is an open source high-performance network communication framework based on PHP. It provides the implementation of TCP/UDP server and client, as well as a variety of asynchronous IO, coroutine and other advanced features. As Swoole becomes more and more popular, many people begin to care about the use of Swoole by web servers. Why don't current web servers (such as Apache, Nginx, OpenLiteSpeed, etc.) use Swoole? Let's explore this question.

Entry-level tutorial: A quick guide to building a web server on CentOS Introduction: In today's Internet era, building your own web server has become a need for many people. This article will introduce you to how to build a web server on the CentOS operating system, and provide code examples to help readers quickly implement it. Step 1: Install and configure Apache Open the terminal and install the Apache server through the following command: sudoyuminstallhttpd After the installation is complete, start Apac

Go language has become a popular development language, especially for network programming. When writing a web server in Go, there are many best practices to ensure the security, maintainability and scalability of the server. Here are some suggestions and practices that can help you improve the efficiency and reliability of your Go web server. Using the standard library There are many packages related to network programming in the Go language standard library. For example, the net/http package helps you write HTTP servers, and the net package helps handle low-level network connections.

1. Introduction We will divide the content of this article into the following parts: 2. Basic concepts of Web server Web server: a program responsible for processing the client's HTTP request and returning a response. HTTP request: A request sent by the client (such as a browser) to the server, including request method, URL, request header and other information. HTTP response: The data returned by the server to the client, including status code, response headers, response body and other information. 3. Python network programming library socket library: One of Python's standard libraries, it provides underlying network communication functions, including operations such as creating sockets, binding addresses, and listening ports. http.server library: One of Python’s standard libraries, providing a basic H
