Home  >  Article  >  Backend Development  >  PHP magic constant test example_PHP tutorial

PHP magic constant test example_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:17:56793browse

php魔术常量测试示例

   直接贴测试代码:

 代码如下  

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

 代码如下  

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


$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

http://www.bkjia.com/PHPjc/887187.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/887187.htmlTechArticle
php魔术常量测试示例 直接贴测试代码: 代码如下 class MoShu{ public function moshu() { echo '当前类名:' . __CLASS__ . br /; echo '当前方法名:' . __FU...
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