echo '<br/>当前行:'.__line__;
echo '<br/>当前文件路劲:'.__file__;
echo '<br/>当前文件所在文件夹:'.__dir__ ;

class Student
{
	public function __construct()
	{
		echo '<br/>当前类:'.__class__ ;
		echo '<br/>当前函数:'.__function__ ;
		echo '<br/>当前命名空间:'.__namespace__ ;
	}
}
$stu = new Student();

输出:

当前行:1
当前文件路劲:E:\www\index.php
当前文件所在文件夹:E:\www
当前类:Student
当前函数:__construct
当前命名空间:

你可能感兴趣的文章