Recognize system Constants

Source: Internet
Author: User

System constants are defined by PHP. They can be used directly. common systems are:

(1) _ file _: PhP program file name. It helps us to obtain the physical location of the current file on the server.

(2) _ line _: Number of PHP program files. It tells us the number of lines in the current Code.

(3) php_version: version number of the current parser. It tells us the version number of the current PHP parser. We can know in advance whether our PHP code can be parsed by the PHP parser.

(4) php_ OS: name of the operating system for executing the current PHP version. It tells us the name of the operating system used by the server, and we can optimize our code based on the operating system.

<? PHP

Echo _ file __;

Echo "<br/> ";

Echo _ line __;

Echo "<br/> ";

Echo php_version;

Echo "<br/> ";

Echo php_ OS;

Echo "<br/> ";

?>



 
./Index. php45.3.28linux


Recognize system Constants

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.