search
HomeBackend DevelopmentPHP TutorialDetailed explanation of PHP magic variables and magic functions, detailed explanation of magic functions_PHP tutorial

Detailed explanation of PHP magic variables and magic functions, detailed explanation of magic functions

Magic Variables

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, as follows:

__LINE__

The current line number in the file.

Example:

Copy code The code is as follows:

echo 'This is line " ' . __LINE__ . ' ";
?>

The output result of the above example is:

Copy code The code is as follows:

This is line “2”

__FILE__

The full path and file name of the 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:

Copy code The code is as follows:

echo 'The file is located at " ' . __FILE__ . ' " ';
?>

The output result of the above example is:

Copy code The code is as follows:

The file is located at " E:wampwwwtestindex.php "

__DIR__

The directory where the 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:

Copy code The code is as follows:

echo 'The file is located at " ' . __DIR__ . ' " ';
?>

The output result of the above example is:

Copy code The code is as follows:

The file is located at " E:wampwwwtest "

__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:

Copy code The code is as follows:

function test() {
echo 'The function name is:' . __FUNCTION__ ;
}
test();
?>

The output result of the above example is:

Copy code The code is as follows:

Function name: 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. FooBar). 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:

Copy code The code is as follows:

class test {
function _print() {
echo 'Class name:' . __CLASS__ . "
";
echo 'Function name:' . __FUNCTION__ ;
}
}
$t = new test();
$t->_print();
?>

The output result of the above example is:

Class name: test
Function name: _print

__TRAIT__

The name of the Trait (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 (e.g. FooBar).

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.

Copy code The code is as follows:

class Base {
Public function sayHello() {
echo 'Hello ';
}
}
{
Public function sayHello() {
        parent::sayHello();
echo 'World!';
}
}
class MyHelloWorld extends Base {
 
}
$o = new MyHelloWorld();
$o->sayHello();
?>

The above routine will output:

Copy code The code is as follows:

Hello World!

__METHOD__

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

Example:

Copy code The code is as follows:

function test() {
echo 'Function name:' . __METHOD__ ;
}
test();
?>

The output result of the above example is:

Copy code The code is as follows:

Function name: test

__NAMESPACE__

The name of the current namespace (case sensitive). This constant is defined at compile time (new in PHP 5.3.0).

Example:

Copy code The code is as follows:

namespace MyProject;
echo 'The namespace is: "', __NAMESPACE__, '"'; // Output "MyProject"
?>

The output result of the above example is:

Copy code The code is as follows:

The namespace is: "MyProject"

Magic function

__construct()
​ Called when instantiating an object,
When __construct and a function with a class name and a function name exist at the same time, __construct will be called and the other will not be called.

__destruct()
: Called when an object is deleted or the object operation terminates.

__call()
Object calls a method,
If the method exists, call it directly;
If it does not exist, the __call function will be called.

__get()
When reading the properties of an object,
If the attribute exists, the attribute value will be returned directly;
If it does not exist, the __get function will be called.

__set()
When setting the properties of an object,
If the attribute exists, assign the value directly;
If it does not exist, the __set function will be called.

__toString()
: Called when printing an object. Such as echo $obj; or print $obj;

__clone()
​ Called when cloning an object. For example: $t=new Test();$t1=clone $t;

__sleep()
serialize is called before. If the object is relatively large and you want to delete a little bit before serializing it, you can consider this function.

__wakeup()
It is called when unserialize and does some object initialization work.

__isset()
​ Called when checking whether an object's properties exist. For example: isset($c->name).

__unset()
​ Called when unsetting a property of an object. For example: unset($c->name).

__set_state()
​ Called when var_export is called. Use the return value of __set_state as the return value of var_export.

__autoload()
When instantiating an object, if the corresponding class does not exist, this method is called.

The above is the entire content of this article. Have you guys gained a new understanding of magic variables and magic functions? I hope you like the content of this article.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/960712.htmlTechArticlePHP Detailed explanation of magic variables and magic functions, Detailed explanation of magic functions Magic variables PHP provides a large number of functions to any script it runs Predefined constants. However, many constants are composed of different extensions...
Statement
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
PHP Dependency Injection Container: A Quick StartPHP Dependency Injection Container: A Quick StartMay 13, 2025 am 12:11 AM

APHPDependencyInjectionContainerisatoolthatmanagesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itactsasacentralhubforcreatingandinjectingdependencies,thusreducingtightcouplingandeasingunittesting.

Dependency Injection vs. Service Locator in PHPDependency Injection vs. Service Locator in PHPMay 13, 2025 am 12:10 AM

Select DependencyInjection (DI) for large applications, ServiceLocator is suitable for small projects or prototypes. 1) DI improves the testability and modularity of the code through constructor injection. 2) ServiceLocator obtains services through center registration, which is convenient but may lead to an increase in code coupling.

PHP performance optimization strategies.PHP performance optimization strategies.May 13, 2025 am 12:06 AM

PHPapplicationscanbeoptimizedforspeedandefficiencyby:1)enablingopcacheinphp.ini,2)usingpreparedstatementswithPDOfordatabasequeries,3)replacingloopswitharray_filterandarray_mapfordataprocessing,4)configuringNginxasareverseproxy,5)implementingcachingwi

PHP Email Validation: Ensuring Emails Are Sent CorrectlyPHP Email Validation: Ensuring Emails Are Sent CorrectlyMay 13, 2025 am 12:06 AM

PHPemailvalidationinvolvesthreesteps:1)Formatvalidationusingregularexpressionstochecktheemailformat;2)DNSvalidationtoensurethedomainhasavalidMXrecord;3)SMTPvalidation,themostthoroughmethod,whichchecksifthemailboxexistsbyconnectingtotheSMTPserver.Impl

How to make PHP applications fasterHow to make PHP applications fasterMay 12, 2025 am 12:12 AM

TomakePHPapplicationsfaster,followthesesteps:1)UseOpcodeCachinglikeOPcachetostoreprecompiledscriptbytecode.2)MinimizeDatabaseQueriesbyusingquerycachingandefficientindexing.3)LeveragePHP7 Featuresforbettercodeefficiency.4)ImplementCachingStrategiessuc

PHP Performance Optimization Checklist: Improve Speed NowPHP Performance Optimization Checklist: Improve Speed NowMay 12, 2025 am 12:07 AM

ToimprovePHPapplicationspeed,followthesesteps:1)EnableopcodecachingwithAPCutoreducescriptexecutiontime.2)ImplementdatabasequerycachingusingPDOtominimizedatabasehits.3)UseHTTP/2tomultiplexrequestsandreduceconnectionoverhead.4)Limitsessionusagebyclosin

PHP Dependency Injection: Improve Code TestabilityPHP Dependency Injection: Improve Code TestabilityMay 12, 2025 am 12:03 AM

Dependency injection (DI) significantly improves the testability of PHP code by explicitly transitive dependencies. 1) DI decoupling classes and specific implementations make testing and maintenance more flexible. 2) Among the three types, the constructor injects explicit expression dependencies to keep the state consistent. 3) Use DI containers to manage complex dependencies to improve code quality and development efficiency.

PHP Performance Optimization: Database Query OptimizationPHP Performance Optimization: Database Query OptimizationMay 12, 2025 am 12:02 AM

DatabasequeryoptimizationinPHPinvolvesseveralstrategiestoenhanceperformance.1)Selectonlynecessarycolumnstoreducedatatransfer.2)Useindexingtospeedupdataretrieval.3)Implementquerycachingtostoreresultsoffrequentqueries.4)Utilizepreparedstatementsforeffi

See all articles

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.