开发者

PHP - recognize when the function was called

开发者 https://www.devze.com 2022-12-17 11:14 出处:网络
I\'m thinking about how to find from where any function was called. The problem is that I need to find where the PHP is calling mail() function. One way will be to use register_tick_function(), but I\

I'm thinking about how to find from where any function was called. The problem is that I need to find where the PHP is calling mail() function. One way will be to use register_tick_function(), but I'开发者_如何学Goll need to open each file and check what is on each line. The project is huge, it will take really long to parse each file in PHP. Any other way? Or option how to override the mail() function?


To override the built-in mail function, take a look at override_function which is part of the Advanced PHP Debugger PECL extension - then you can use debug_backtrace to find out the caller details...

//define code to override mail function (note I've used php5.3 nowdoc syntax to avoid 
//the need to escape the dollar symbols!!
$code=<<<'CODE'
    $trace=debug_backtrace();
    $caller=array_shift($trace);

    echo 'mail() called by '.$caller['function']
    if (isset($caller['class']))
        echo 'in '.$caller['class'];
CODE;

//install override
override_function('mail', '$to,$subject,$msg,$hdrs,$params', $code);


You can inspect the stack trace with debug_backtrace(). This will contain information about the calling method/function among others. See the manual for examples.

To add behavior to an existing function, wrap the function into your own function or class and then call this instead of the native function.

To completely redefine a native function, you'd have to install runkit. Then you could do runkit_redefine_function() (or use APD as suggested elsewhere).

If you just want to know where in your project mail() was called, e.g. you do not need to evaluate this at runtime, use your IDE's search function. Eclipse, Zend Studio and Netbeans can do file searches, so it should be very easy to find the calls and also to replace them.


The brute force approach would be to do a global search and replace in your code, replacing "mail\s(" with "my_mail(", then define my_mail and put whatever logging functionality you want there.


Why don't you simply search the source for "mail("?


I take it you have access to the source code?

Why not just use an editor like jEdit, and find all occurences of mail(* in all open buffers?

Or do you really need to know the line numbers at runtime? I can't imagine that you actually do.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号