请输入您要查询的百科知识:

 

词条 php_sapi_name
释义

功 能

php_sapi_name 是用来检测PHP运行环境的函数。

语 法

voidphp_sapi_name( void)

返回值

该函数返回一个描述PHP与WEB服务器接口的小写字符串。

例如:aolserver, apache,apache2filter, apache2handler, caudium, cgi(until PHP 5.3),cgi-fcgi, cli, continuity, embed, isapi, litespeed, milter, nsapi, phttpd, pi3web, roxen,thttpd, tux, webjames.

实 例

<?php

$sapi_type = php_sapi_name();

if (substr($sapi_type, 0, 3) == 'cgi') {

echo "You are using CGI PHP\";

} else {

echo "You are not using CGI PHP\";

}

?>

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/12/23 19:34:17