(PHP 4 >= 4.0.1, PHP 5, PHP 7)
php_sapi_name — 返回 web 服务器和 PHP 之间的接口类型
返回描述 PHP 所使用的接口类型(the Server API, SAPI)的小写字符串。 例如,CLI 的 PHP 下这个字符串会是 "cli",Apache 下可能会有几个不同的值,取决于具体使用的 SAPI。 以下列出了可能的值。
返回接口类型的小写字符串。
尽管不够全面,可能返回的值包括了 aolserver、apache、 apache2filter、apache2handler、 caudium、cgi (直到 PHP 5.3), cgi-fcgi、cli、 cli-server、 continuity、embed、fpm-fcgi、 isapi、litespeed、 milter、nsapi、 phttpd、pi3web、roxen、 thttpd、tux 和 webjames。
Example #1 php_sapi_name() 例子
以下例子检测了子字符串 cgi,因为它也有可能会是 cgi-fcgi。
<?php
$sapi_type = php_sapi_name();
if (substr($sapi_type, 0, 3) == 'cgi') {
echo "You are using CGI PHP\n";
} else {
echo "You are not using CGI PHP\n";
}
?>
Note: 另一种方法
PHP 常量
PHP_SAPI
具有和 php_sapi_name() 相同的值。
定义的 SAPI 可能不够明显,比如它可能定义为 apache2handler 或 apache2filter,而不是 apache