Jump to content

trying to debug some code...


Looktrne

Recommended Posts

I am trying to find out inside what file a certain function happens....

 

is there a way to track what php is doing as far as what file is being opened when?

 

like if I run index.php

 

and it requires "file1.php"

 

is there a way of knowing that it opened file1.php??

 

thanks for any help

Link to comment
https://forums.phpfreaks.com/topic/88629-trying-to-debug-some-code/
Share on other sites

if ya are including it from a variable

than easier to attch an echo or add to log file right after the include

 

include($inc="$page.php"); mylog("include($inc)");

 

function mylog($msg) {
    if ($fp = @fopen("my.log", "a")) {
        $msg="$msg\n";
        fwrite($fp, $msg, strlen($msg));
        fclose($fp);
    }
}

 

might be a bit ugly but works

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.