Constants commonly used in PHP

Source: Internet
Author: User

There are seven magic constants whose values change as they change position in the Code. For example, the value of __line__ depends on the row it is in the script to Determine. These special constants are case-insensitive, as Follows:
name Description
__line__ The current line number in the File.
__file__ The full path and file name of the File. If used in the included file, returns the file name that is Included. From PHP 4.0.2,__file__ always contains an absolute path (if it is a symbolic connection, the resolved absolute path), and the previous version sometimes contains a relative path.
__dir__ The directory where the file Resides. If used in the included file, returns the directory where the included files are Located. It is equivalent to dirname (__file__). Unless it is a root directory, the name in the directory does not include the trailing Slash. (new in PHP 5.3.0) =
__function__ The name of the function (PHP 4.3.0 new addition). From PHP 5 This constant returns the name (case-sensitive) when the function is Defined. In PHP 4, This value is always in lowercase letters.
__class__ The name of the class (PHP 4.3.0 new addition). From PHP 5 This constant returns the name of the class when it is defined (case-sensitive). In PHP 4, This value is always in lowercase letters.
__method__ The method name of the class (PHP 5.0.0 new addition). Returns the name of the method when it is defined (case-sensitive).
__namespace__ The name of the current namespace (case sensitive). This constant is defined at compile time (PHP 5.3.0 new)

Constants commonly used in PHP

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.