Introduction to php magic constant examples

WBOY
Release: 2016-07-29 09:01:54
Original
922 people have browsed it

Magic constants PHP provides a large number of predefined constants to any script it runs. Our commonly used PHP magic constants are __CLASS__ __FUNCTION__ __LINE__ __FILE__ __DIR__ __METHOD__. This article introduces PHP magic constants to you through PHP examples

Examples :

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

</span><span>$moshu</span> = <span>new</span><span> moshu();
</span><span>$moshu</span>->moshu();
Copy after login

Copy the code here and run it

The result is as follows:

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

The above has introduced examples of PHP magic constants, including aspects of the content. I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!