Home  >  Article  >  php教程  >  php魔术常量测试示例

php魔术常量测试示例

WBOY
WBOYOriginal
2016-06-13 09:24:341254browse

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
当前类名: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