Get the name of the lower function

Source: Internet
Author: User
Get the name of the upper function
Class Ex {

Public Function Demo ()
{
$this->display ();
}

Public Function dispaly ()
{
I'm here to get the name of the demo function calling this method, what's the way??
}

}

------Solution--------------------
Class Ex {
Public Function demo () {
$this->display ();
}
Public Function display () {
I'm here to get the name of the demo function calling this method, what's the way??
Print_r (Debug_backtrace ());
}
}
$p = new Ex;
$p->demo ();
Array
(
[0] = = Array
(
[File] = D:\AMP\web\ide_tmp.php
[Line] = 5
[Function] = display
[Class] = ex
[Object] = ex Object
(
)

[Type] =
[Args] = Array
(
)

)

[1] = = Array
(
[File] = D:\AMP\web\ide_tmp.php
[Line] = 13
[Function] = Demo
[Class] = ex
[Object] = ex Object
(
)

[Type] =
[Args] = Array
(
)

)

)
  • 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.