Query: php_sapi_name
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
PHP_SAPI_NAME(3) 1 PHP_SAPI_NAME(3) php_sapi_name - Returns the type of interface between web server and PHPSYNOPSISstring php_sapi_name (void )DESCRIPTIONReturns a lowercase string that describes the type of interface (the Server API, SAPI) that PHP is using. For example, in CLI PHP this string will be "cli" whereas with Apache it may have several different values depending on the exact SAPI used. Possible values are listed below.RETURN VALUESReturns the interface type, as a lowercase string. Although not exhaustive, the possible return values include aolserver, apache, apache2filter, apache2handler, caudium, cgi (until PHP 5.3), cgi-fcgi, cli, cli-server, continuity, embed, fpm-fcgi, isapi, litespeed, milter, nsapi, phttpd, pi3web, roxen, thttpd, tux, and web- james.EXAMPLESExample #1 php_sapi_name(3) example This example checks for the substring cgi because it may also be cgi-fcgi. <?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 "; } ?>NOTESNote An alternative approach The PHP constant PHP_SAPI has the same value as php_sapi_name(3). Tip A potential gotcha The defined SAPI may not be obvious, because for example instead of apache it may be defined as apache2handler or apache2filter.SEE ALSOPHP_SAPI. PHP Documentation Group PHP_SAPI_NAME(3)
Related Man Pages |
---|
php-config5(1) - debian |
php-config(1) - centos |
php_sapi_name(3) - php |
php-config(1) - suse |
php_strip_whitespace(3) - php |
Similar Topics in the Unix Linux Community |
---|
Apache 0777 directories |
What do I need to start PHP programming and web design? |
Server has been compromised |
VPS webserver speed |
PubNub PHP SDK V4 Issues |