Home >Backend Development >PHP Tutorial >什么是php 的safe mode? php.exe? php-cgi.exe? php-win.exe?

什么是php 的safe mode? php.exe? php-cgi.exe? php-win.exe?

WBOY
WBOYOriginal
2016-06-23 14:35:271079browse

安全模式下,PHP程序的行为被进行了限制,比如不能执行某些函数,只能打开指定文件夹的文件等。
  
一般在你的主机提高个人网站,就是PHP的程序所有者不是你本人的时候,需要设置安全方式。
  
php.exe是提供来在命令行执行PHP文件的工具,比如你在有文件ABC.PHP,那么你可以在CMD命令提示符下执行命令php.exe abc.php来运行这个PHP文件。
  
php-cgi.exe是提供来作为CGI使用的,区别是在文件输出所有内容之前,会自动输出一个下面的HTTP头:X-Powered-By: PHP/5.2.5Content-type: text/htmlphp-win.exe也可以执行PHP文件,区别是大打开控制台,不显示输出内容。可以用来编写无需显示界面的文件处理、网路服务等程序。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:PHP Socket 编程***Next article:Creating document for PHP code