Home  >  Article  >  php教程  >  php魔术常量实例介绍,php魔术常量

php魔术常量实例介绍,php魔术常量

WBOY
WBOYOriginal
2016-06-13 08:45:441202browse

php魔术常量实例介绍,php魔术常量

魔术常量 php向它运行的任何脚本提供了大量的预定义常量了,我们常用的php魔术常量有 __CLASS__ __FUNCTION__ __LINE__ __FILE__ __DIR__ __METHOD__了,本文章通过php实例向大家介绍php魔术常量

 

实例:

class MoShu{
 public function moshu() {
  echo '当前类名:' . __CLASS__ . "
"; echo '当前方法名:' . __FUNCTION__ . "
"; echo '当前文件中所在的行数:' . __LINE__ . "
"; echo '当前文件绝对路径:' . __FILE__ . "
"; echo '当前文件所在的绝对路径的文件夹:' . __DIR__ . "
"; echo '返回类名::方法名:' . __METHOD__ . "
"; } } $moshu = new moshu(); $moshu->moshu();

将代码复制到这里运行一把

结果如下:

当前类名:MoShu
当前方法名:moshu
当前文件中所在的行数:10
当前文件绝对路径:D:\xampp\htdocs\test\moshu.php
当前文件所在的绝对路径的文件夹:D:\xampp\htdocs\test
返回类名::方法名:MoShu::moshu

 

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