


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></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> </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></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></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></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></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.

CentOS上搭建Web服务器的安全审计与事件日志管理概述随着互联网的发展,Web服务器的安全审计和事件日志管理变得越来越重要。在CentOS操作系统上搭建Web服务器后,我们需要关注服务器的安全性并保护服务器免受恶意攻击。本文将介绍如何进行安全审计和事件日志管理,并提供相关代码示例。安全审计安全审计是指对服务器的安全状态进行全面的监控和检查,及时发现潜在的

最佳实践:CentOS搭建web服务器的性能调优指南摘要:本文旨在为CentOS搭建web服务器的用户提供一些性能调优的最佳实践,旨在提升服务器的性能和响应速度。将介绍一些关键的调优参数和常用的优化方法,并提供了一些示例代码帮助读者更好地理解和应用这些方法。一、关闭不必要的服务在CentOS搭建web服务器时,默认会启动一些不必要的服务,这些服务会占用系统资

CentOS搭建web服务器前需注意的权限与访问控制策略在搭建web服务器的过程中,权限与访问控制策略是非常重要的一环。正确设置权限和访问控制策略可以保护服务器的安全性,防止非授权用户访问敏感数据或者对服务器进行不当操作。本文将介绍在CentOS系统下搭建web服务器时需要注意的权限与访问控制策略,并提供相应的代码示例。用户与组的管理首先,我们需要创建一个专

五种web服务器是:1、IIS,是允许在公共Intranet或Internet上发布信息的Web服务器;2、Apache,是Apache软件基金会的一个开放源码的网页服务器;3、WebSphere Application Server,是一种Web应用程序服务器;4、Tomcat,是基于Java的Web应用软件容器;5、Lighttpsd,是一个开源Web服务器软件。

Swoole是一个基于PHP的开源高性能网络通信框架,它提供了TCP/UDP服务器和客户端的实现,以及多种异步IO、协程等高级特性。随着Swoole日益流行,许多人开始关心Web服务器使用Swoole的问题。为什么当前的Web服务器(如Apache、Nginx、OpenLiteSpeed等)不使用Swoole呢?让我们探讨一下这个问题。

入门级教程:在CentOS上搭建web服务器的快速指南引言:在当今互联网时代,搭建自己的web服务器已经成为许多人的需求。本文将为大家介绍如何在CentOS操作系统上搭建web服务器,并提供代码示例帮助读者快速实现。第一步:安装和配置Apache打开终端,通过以下命令安装Apache服务器:sudoyuminstallhttpd安装完成后,启动Apac

Go语言已经成为了一种流行的开发语言,特别是在网络编程方面。Go语言编写Web服务器时,有许多最佳实践来确保服务器的安全性、可维护性和可扩展性。以下是一些建议和实践,可以帮助你提高你的Go语言Web服务器的效率和可靠性。使用标准库Go语言标准库中有很多相关于网络编程的包。例如,net/http包可以帮助你编写HTTP服务器,net包可以帮助处理底层网络连接,

一、简介我们将分为以下几个部分来展开本文的内容:二、Web服务器基础概念Web服务器:负责处理客户端的HTTP请求并返回响应的程序。HTTP请求:客户端(如浏览器)向服务器发送的请求,包括请求方法、URL、请求头等信息。HTTP响应:服务器返回给客户端的数据,包括状态码、响应头和响应体等信息。三、Python网络编程库socket库:Python的标准库之一,提供了底层的网络通信功能,包括创建套接字、绑定地址、监听端口等操作。http.server库:Python的标准库之一,提供了一个基本的H


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

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

WebStorm Mac version
Useful JavaScript development tools

Atom editor mac version download
The most popular open source editor

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
