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
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

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

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