diff options
Diffstat (limited to 'README')
-rw-r--r-- | README | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -118,14 +118,14 @@ Functions: it_debug - Debug support ------------------------ -it_debug is used for debugging. The function ED($foo, $bar) outputs echoes the +it_debug is used for debugging. The function ED($foo, $bar) echoes the values of $foo and $bar AND prepends it with the names of the variables. EDX() -does the same and exists. EDC('verbose', $foo) only echoes if +does the same and exits. EDC('verbose', $foo) only echoes if $GLOBALS['debug_verbose'] is set. it_debug::backtrace() outputs a compact stackdump. Example: - ED($foo, $bar); # outputs name and value of $foo and $bar + ED($foo, $bar); # echoes name and value of $foo and $bar EDC('verbose', $foo); Functions: |