Home Backend Development PHP Tutorial Understanding and application of relevant knowledge about PHP magic variables

Understanding and application of relevant knowledge about PHP magic variables

May 07, 2018 am 11:16 AM
php use magic variable

PHP Magic variables play an important role in PHP. This article explains them in detail.

PHP provides a large number of predefined constants to any script it runs.

However, many constants are defined by different extension libraries and will only appear when these extension libraries are loaded, or after dynamic loading, or have been included during compilation.

There are eight magic constants whose values ​​change depending on their position in the code.

For example, the value of __LINE__ depends on the line it is located in the script. These special constants are not case-sensitive and are as follows:

__LINE__

The current line number in the file.

Example

The output result of the above example is:

This is the full path and file name of the file in line "2"

__FILE__

. If used within an included file, returns the name of the included file.

Since PHP 4.0.2, __FILE__ always contains an absolute path (or the resolved absolute path in the case of a symbolic link), while versions before that sometimes contained a relative path.

Example:

Example

The above example output The result is:

The file is located in the directory where the "E:\wamp\www\test\index.php"

##__DIR__

file is located. If used within an included file, returns the directory where the included file is located.

It is equivalent to dirname(__FILE__). Directory names do not include the trailing slash unless they are the root directory. (New in PHP 5.3.0)

Example

Above example The output result is:

The file is located in "E:\wamp\www\test"


__FUNCTION__

Function name (newly added in PHP 4.3.0). Since PHP 5 this constant returns the name of the function as it was defined (case sensitive). In PHP 4 this value is always lowercase.

Example

<?phpfunction test() {
    echo  &#39;函数名为:&#39; . __FUNCTION__ ;}test();?>
Copy after login

The output result of the above example is:

The function name is: test


__CLASS__

The name of the class (New in PHP 4.3.0). Since PHP 5 this constant returns the name of the class when it was defined (case sensitive).

In PHP 4 this value is always lowercase. The class name includes the scope in which it is declared (e.g. Foo\Bar). Note that since PHP 5.4 __CLASS__ also works for traits. When used within a trait method, __CLASS__ is the name of the class that calls the trait method.

Example

<?phpclass test {
    function _print() {
        echo &#39;类名为:&#39;  . __CLASS__ . "<br>";        echo  &#39;函数名为:&#39; . __FUNCTION__ ;    }}$t = new test();$t->_print();?>
Copy after login

The output result of the above example is:

Class name: test Function name: _print


__TRAIT__

Trait name (new in PHP 5.4.0). Since PHP 5.4.0, PHP implements a method of code reuse called traits.

The Trait name includes the scope in which it is declared (for example, Foo\Bar).

Members inherited from the base class are overridden by the MyHelloWorld method in the inserted SayWorld Trait. Its behavior is consistent with the methods defined in the MyHelloWorld class. The order of precedence is that methods in the current class override trait methods, which in turn override methods in the base class.

Example

<?phpclass Base {
    public function sayHello() {
        echo &#39;Hello &#39;;    }}
 trait SayWorld {
    public function sayHello() {
        parent::sayHello();        echo &#39;World!&#39;;    }}
 class MyHelloWorld extends Base {
    use SayWorld;}
 $o = new MyHelloWorld();$o->sayHello();?>
Copy after login

The above routine will output:

Hello World!


__METHOD__

The method name of the class ( New in PHP 5.0.0). Returns the name of the method as it was defined (case-sensitive).

Example

<?phpfunction test() {
    echo  &#39;函数名为:&#39; . __METHOD__ ;}test();?>
Copy after login

The output result of the above example is:

The function name is: test


__NAMESPACE__

Current namespace name (case sensitive). This constant is defined at compile time (new in PHP 5.3.0).

Example:

Example

<?phpnamespace MyProject; 
echo &#39;命名空间为:"&#39;, __NAMESPACE__, &#39;"&#39;; // 输出 "MyProject"?>
Copy after login

The output result of the above example is:

The namespace is: "MyProject"


This article provides a detailed understanding of PHP's magic variables. For more learning materials, please pay attention to the PHP Chinese website.

Related recommendations:

What are the differences between php magic variables __METHOD__ and __FUNCTION__

php magic variables and magic function examples Tutorial summary

Detailed explanation of php magic variable usage examples, detailed explanation of php magic examples_PHP tutorial

The above is the detailed content of Understanding and application of relevant knowledge about PHP magic variables. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

CakePHP Quick Guide CakePHP Quick Guide Sep 10, 2024 pm 05:27 PM

CakePHP is an open source MVC framework. It makes developing, deploying and maintaining applications much easier. CakePHP has a number of libraries to reduce the overload of most common tasks.

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

See all articles