your image

PHP Magic Constants - javatpoint

javapoint
Related Topic
:- PHP

Magic Constants

Magic constants are the predefined constants in PHP which get changed on the basis of their use. They start with double underscore (__) and ends with double underscore.

They are similar to other predefined constants but as they change their values with the context, they are called magic constants.

There are nine magic constants in PHP. In which eight magic constants start and end with double underscores (__).

  1. __LINE__
  2. __FILE__
  3. __DIR__
  4. __FUNCTION__
  5. __CLASS__
  6. __TRAIT__
  7. __METHOD__
  8. __NAMESPACE__
  9. ClassName::class

All of the constants are resolved at compile-time instead of run time, unlike the regular constant. Magic constants are case-insensitive.

 

 

Changelog

VersionDescription5.3.0Added __DIR__ and __NAMESPACE__ magic constant5.4.0Added __TRAIT__ magic constant5.5.0Added ::class magic constant

All the constants are defined below with the example code:

1. __LINE__

It returns the current line number of the file, where this constant is used.

Example:

  1. <?php   
  2.     echo "<h3>Example for __LINE__</h3>";    
  3.     // print Your current line number i.e;4     
  4.     echo "You are at line number " . __LINE__ . "<br><br>";  
  5. ?>  

Output:

 

Example for __LINE__

You are at line number 4

2. __FILE__:

This magic constant returns the full path of the executed file, where the file is stored. If it is used inside the include, the name of the included file is returned.

Example:

  1. <?php   
  2.     echo "<h3>Example for __FILE__</h3>";    
  3.     //print full path of file with .php extension    
  4.     echo __FILE__ . "<br><br>";  
  5. ?>  

Output:

 

Example for __FILE__

D:\xampp\htdocs\program\magic.php

3. __DIR__:

It returns the full directory path of the executed file. The path returned by this magic constant is equivalent to dirname(__FILE__). This magic constant does not have a trailing slash unless it is a root directory.

 

Example:

  1. <?php   
  2.     echo "<h3>Example for __DIR__</h3>";    
  3.     //print full path of directory where script will be placed    
  4.     echo __DIR__ . "<br><br>";  
  5.     //below output will equivalent to above one.  
  6.     echo dirname(__FILE__) . "<br><br>";    
  7. ?>  

Output:

 

Example for __DIR__

D:\xampp\htdocs\program D:\xampp\htdocs\program

4. __FUNCTION__:

This magic constant returns the function name, where this constant is used. It will return blank if it is used outside of any function.

Example:

  1. <?php   
  2.     echo "<h3>Example for __FUNCTION__</h3>";    
  3.     //Using magic constant inside function.    
  4.     function test(){    
  5.         //print the function name i.e; test.   
  6.         echo 'The function name is '. __FUNCTION__ . "<br><br>";   
  7.     }    
  8.     test();    
  9.       
  10.     //Magic constant used outside function gives the blank output.    
  11.     function test_function(){    
  12.         echo 'Hie';    
  13.     }    
  14.     test_function();    
  15.     //give the blank output.   
  16.     echo  __FUNCTION__ . "<br><br>";  
  17. ?>  

Output:

 

 

Example for __FUNCTION__

The function name is test Hie

5. __CLASS__:

It returns the class name, where this magic constant is used. __CLASS__ constant also works in traits.

Example:

  1. <?php   
  2.     echo "<h3>Example for __CLASS__</h3>";    
  3.     class JTP    
  4.     {    
  5.         public function __construct() {    
  6.             ;    
  7.     }    
  8.     function getClassName(){    
  9.         //print name of the class JTP.   
  10.         echo __CLASS__ . "<br><br>";   
  11.         }    
  12.     }    
  13.     $t = new JTP;    
  14.     $t->getClassName();    
  15.       
  16.     //in case of multiple classes   
  17.     class base  
  18.     {    
  19.     function test_first(){    
  20.             //will always print parent class which is base here.    
  21.             echo __CLASS__;   
  22.         }    
  23.     }    
  24.     class child extends base    
  25.     {    
  26.         public function __construct() {    
  27.             ;    
  28.         }    
  29.     }    
  30.     $t = new child;    
  31.     $t->test_first();    
  32. ?>  

Output:

 

 

Example for __CLASS__

JTP base

6. __TRAIT__:

This magic constant returns the trait name, where it is used.

Example:

  1. <?php   
  2.     echo "<h3>Example for __TRAIT__</h3>";    
  3.     trait created_trait {    
  4.         function jtp(){    
  5.             //will print name of the trait i.e; created_trait    
  6.             echo __TRAIT__;  
  7.         }    
  8.     }    
  9.     class Company {    
  10.         use created_trait;    
  11.         }    
  12.     $a = new Company;    
  13.     $a->jtp();    
  14. ?>  

Output:

 

Example for __TRAIT__

created_trait

7. __METHOD__:

It returns the name of the class method where this magic constant is included. The method name is returned the same as it was declared.

Example:

  1. <?php   
  2.     echo "<h3>Example for __METHOD__</h3>";  
  3.     class method {    
  4.         public function __construct() {    
  5.             //print method::__construct    
  6.                 echo __METHOD__ . "<br><br>";   
  7.             }    
  8.         public function meth_fun(){    
  9.             //print method::meth_fun    
  10.                 echo __METHOD__;   
  11.         }    
  12.     }    
  13.     $a = new method;    
  14.     $a->meth_fun();  
  15. ?>  

Output:

 

Example for __METHOD__

method:: construct method:: meth_fun

8. __NAMESPACE__:

It returns the current namespace where it is used.

Example:

  1. <?php   
  2.     echo "<h3>Example for __NAMESPACE__</h3>";  
  3.     class name {    
  4.         public function __construct() {    
  5.             echo 'This line will print on calling namespace.';     
  6.         }     
  7.     }    
  8.     $class_name = __NAMESPACE__ . '\name';    
  9.     $a = new class_name;   
  10. ?>  

Output:

 

 

Example for __NAMESPACE__

This line will print on calling namespace.

9. ClassName::class:

This magic constant does not start and end with the double underscore (__). It returns the fully qualified name of the ClassName. ClassName::class is added in PHP 5.5.0. It is useful with namespaced classes.

Example:

  1. <?php   
  2.     namespace Technical_Portal;  
  3.     echo "<h3>Example for CLASSNAME::CLASS </h3>";  
  4.     class javatpoint {    
  5.     }  
  6.     echo javatpoint::class;    //ClassName::class   
  7. ?>  

Output:

 

Example for ClassName::class

Technical_Portal\javatpoint

Note: Remember namespace must be the very first statement or after any declare call in the script, otherwise it will generate Fatal error.

Comments