Php magic constant _ FILE _, _ LINE _ ,__ FUNCTION _ usage _ PHP Tutorial

Source: Internet
Author: User
In php, the magic constants _ FILE _, _ LINE _ ,__ FUNCTION _ are used. This article mainly describes the magic constants _ FILE _, _ LINE _ ,__ FUNCTION __. if you need them, you can refer to a simple and practical example. Name Description _ FILE _ current FILE name _ LI this article mainly describes the magic constants _ FILE _, _ LINE _ ,__ FUNCTION __, if you need it, you can refer to a simple and practical example.


Name
Description

_ FILE _
Current file name

_ LINE _
Current row number

_ FUNCTION _
Current function name

_ CLASS _
Current class name

_ METHOD _
Current method name

The so-called magic constant is not a real constant, but a variable that gets a fixed value based on the occasion.

The code is as follows:

Echo _ FILE __;

Echo'
';

Echo _ LINE __;

Echo'
';


Function funcTest ()

{

Echo _ FUNCTION __;

}

FuncTest ();

?>

Output

D: AppServwwwBasic7demo15. php
5
FuncTest

Bytes. Name Description _ FILE _ current FILE name _ LI...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.