PHP Classes

File: zray/vendor/PHP_CodeSniffer-2.2.0/CodeSniffer/Standards/Generic/Docs/PHP/SAPIUsageStandard.xml

Recommend this page to a friend!
  Classes of Simo   CodeIgniter Plugin for Z-Ray   zray/vendor/PHP_CodeSniffer-2.2.0/CodeSniffer/Standards/Generic/Docs/PHP/SAPIUsageStandard.xml   Download  
File: zray/vendor/PHP_CodeSniffer-2.2.0/CodeSniffer/Standards/Generic/Docs/PHP/SAPIUsageStandard.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: CodeIgniter Plugin for Z-Ray
Show CodeIgniter application information in Z-Ray
Author: By
Last change:
Date: 1 year ago
Size: 555 bytes
 

Contents

Class file image Download
<documentation title="SAPI Usage"> <standard> <![CDATA[ The PHP_SAPI constant should be used instead of php_sapi_name(). ]]> </standard> <code_comparison> <code title="Valid: PHP_SAPI is used."> <![CDATA[ if (<em>PHP_SAPI</em> === 'cli') { echo "Hello, CLI user."; } ]]> </code> <code title="Invalid: php_sapi_name() is used."> <![CDATA[ if (<em>php_sapi_name()</em> === 'cli') { echo "Hello, CLI user."; } ]]> </code> </code_comparison> </documentation>