Home Backend Development PHP Tutorial Summary of tutorials on php magic variables and magic functions

Summary of tutorials on php magic variables and magic functions

Jul 25, 2016 am 08:51 AM

  1. echo 'This is the " ' . __LINE__ . ' " line';
  2. ?>
Copy the code

The output result is: This is line “2”

__FILE__ The full path and filename 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), whereas versions before that sometimes contained a relative path.

Example:

  1. echo 'The file is located at " ' . __FILE__ . ' " ';
  2. ?>
Copy the code

The output result is: 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:

  1. echo 'The file is located at " ' . __DIR__ . ' " ';
  2. ?>
Copy the code

The output result is: The file is located at " E:wampwwwtest "

__FUNCTION__ Function name (new 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:

  1. function test() {
  2. echo 'The function is called:' . __FUNCTION__ ;
  3. }
  4. test();
  5. ?>
Copy the code

The output result is: 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:

  1. class test {
  2. function _print() {
  3. echo 'The class name is:' . __CLASS__ . "
    ";
  4. echo 'The function name is:' . __FUNCTION__ ;
  5. }
  6. }
  7. $t = new test();
  8. $t->_print();
  9. ?>
Copy the code

The output result 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.

Example:

  1. class Base {
  2. public function sayHello() {
  3. echo 'Hello ';
  4. }
  5. }
  6. {
  7. public function sayHello() {
  8. parent::sayHello();
  9. echo 'World!';
  10. }
  11. }
  12. class MyHelloWorld extends Base {
  13. }
  14. $o = new MyHelloWorld();
  15. $o->sayHello();
  16. ?>
Copy code

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:

  1. function test() {
  2. echo 'The function is called:' . __METHOD__ ;
  3. }
  4. test();
  5. ?>
Copy the code

The output result is: 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:

  1. namespace MyProject;
  2. echo 'The namespace is: "', __NAMESPACE__, '"'; // Output "MyProject"
  3. ?>
Copy code

The output result is: The namespace is: "MyProject"

Magic function __construct() Called when an object is instantiated, When __construct and a function with the class 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 when the object operation terminates. __call() The 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 is 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 it 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 was 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 is used to do some object initialization work. __isset() Called when checking whether an object's property exists. Such as: 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, this method is called if the corresponding class does not exist.



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

Video Face Swap

Video Face Swap

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

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
3 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)

Hot Topics

Java Tutorial
1672
14
PHP Tutorial
1277
29
C# Tutorial
1257
24
Explain secure password hashing in PHP (e.g., password_hash, password_verify). Why not use MD5 or SHA1? Explain secure password hashing in PHP (e.g., password_hash, password_verify). Why not use MD5 or SHA1? Apr 17, 2025 am 12:06 AM

In PHP, password_hash and password_verify functions should be used to implement secure password hashing, and MD5 or SHA1 should not be used. 1) password_hash generates a hash containing salt values ​​to enhance security. 2) Password_verify verify password and ensure security by comparing hash values. 3) MD5 and SHA1 are vulnerable and lack salt values, and are not suitable for modern password security.

How does PHP type hinting work, including scalar types, return types, union types, and nullable types? How does PHP type hinting work, including scalar types, return types, union types, and nullable types? Apr 17, 2025 am 12:25 AM

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values ​​and handle functions that may return null values.

PHP and Python: Different Paradigms Explained PHP and Python: Different Paradigms Explained Apr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP and Python: Code Examples and Comparison PHP and Python: Code Examples and Comparison Apr 15, 2025 am 12:07 AM

PHP and Python have their own advantages and disadvantages, and the choice depends on project needs and personal preferences. 1.PHP is suitable for rapid development and maintenance of large-scale web applications. 2. Python dominates the field of data science and machine learning.

How do you prevent SQL Injection in PHP? (Prepared statements, PDO) How do you prevent SQL Injection in PHP? (Prepared statements, PDO) Apr 15, 2025 am 12:15 AM

Using preprocessing statements and PDO in PHP can effectively prevent SQL injection attacks. 1) Use PDO to connect to the database and set the error mode. 2) Create preprocessing statements through the prepare method and pass data using placeholders and execute methods. 3) Process query results and ensure the security and performance of the code.

PHP: Handling Databases and Server-Side Logic PHP: Handling Databases and Server-Side Logic Apr 15, 2025 am 12:15 AM

PHP uses MySQLi and PDO extensions to interact in database operations and server-side logic processing, and processes server-side logic through functions such as session management. 1) Use MySQLi or PDO to connect to the database and execute SQL queries. 2) Handle HTTP requests and user status through session management and other functions. 3) Use transactions to ensure the atomicity of database operations. 4) Prevent SQL injection, use exception handling and closing connections for debugging. 5) Optimize performance through indexing and cache, write highly readable code and perform error handling.

PHP's Purpose: Building Dynamic Websites PHP's Purpose: Building Dynamic Websites Apr 15, 2025 am 12:18 AM

PHP is used to build dynamic websites, and its core functions include: 1. Generate dynamic content and generate web pages in real time by connecting with the database; 2. Process user interaction and form submissions, verify inputs and respond to operations; 3. Manage sessions and user authentication to provide a personalized experience; 4. Optimize performance and follow best practices to improve website efficiency and security.

Choosing Between PHP and Python: A Guide Choosing Between PHP and Python: A Guide Apr 18, 2025 am 12:24 AM

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

See all articles