php中八个魔术常亮,PHP魔术常量

魔术常数是PHP中的预定义常量,根据它们的使用而改变。 它们以双下划线(__)开头,以双下划线结尾。

它们类似于其他预定义的常量,但是它们随着上下文的改变而改变它们的值,它们被称为魔术常量。

下表中定义了八个魔法常量。 它们不区分大小写。

常量名称

描述

__LINE__

表示使用当前行号。

__FILE__

表示文件的完整路径和文件名。 如果它在include中使用,则返回包含文件的名称。

__DIR__

表示文件的完整目录路径。 等同于dirname(__file__)。 除非它是根目录,否则它没有尾部斜杠。 它还解析符号链接。

__FUNCTION__

表示使用它的函数名称。如果它在任何函数之外使用,则它将返回空白。

__CLASS__

表示使用它的函数名称。如果它在任何函数之外使用,则它将返回空白。

__TRAIT__

表示使用它的特征名称。 如果它在任何函数之外使用,则它将返回空白。 它包括它被声明的命名空间。

__METHOD__

表示使用它的类方法的名称。方法名称在有声明时返回。

__NAMESPACE__

表示当前命名空间的名称。

实例

下面来看看一个上面的每个魔法常量的例子。

文件名:magic.php

echo "

Example for __LINE__

";

echo "You are at line number " . __LINE__ . "
";// print Your current line number i.e;3

echo "

Example for __FILE__

";

echo __FILE__ . "
";//print full path of file with .php extension

echo "

Example for __DIR__

";

echo __DIR__ . "
";//print full path of directory where script will be placed

echo dirname(__FILE__) . "
"; //its output is equivalent to above one.

echo "

Example for __FUNCTION__

";

//Using magic constant inside function.

function cash(){

echo 'the function name is '. __FUNCTION__ . "
";//the function name is cash.

}

cash();

//Using magic constant outside function gives the blank output.

function test_function(){

echo 'HYIIII';

}

test_function();

echo __FUNCTION__ . "
";//gives the blank output.

echo "

Example for __CLASS__

";

class abc

{

public function __construct() {

;

}

function abc_method(){

echo __CLASS__ . "
";//print name of the class abc.

}

}

$t = new abc;

$t->abc_method();

class first{

function test_first(){

echo __CLASS__;//will always print parent class which is first here.

}

}

class second extends first

{

public function __construct() {

;

}

}

$t = new second;

$t->test_first();

echo "

Example for __TRAIT__

";

trait created_trait{

function abc(){

echo __TRAIT__;//will print name of the trait created_trait

}

}

class anew{

use created_trait;

}

$a = new anew;

$a->abc();

echo "

Example for __METHOD__

";

class meth{

public function __construct() {

echo __METHOD__ . "
";//print meth::__construct

}

public function meth_fun(){

echo __METHOD__;//print meth::meth_fun

}

}

$a = new meth;

$a->meth_fun();

echo "

Example for __NAMESPACE__

";

class name{

public function __construct() {

echo 'This line will be printed on calling namespace';

}

}

$clas_name= __NAMESPACE__ .'\name';

$a = new $clas_name;

?>

执行上面代码得到以下结果 -

089b874210da82772ca705b4fdd67863.png

¥ 我要打赏

纠错/补充

收藏

加QQ群啦,易百教程官方技术学习群

注意:建议每个人选自己的技术方向加群,同一个QQ最多限加 3 个群。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值