|
@@ 913-915 (lines=3) @@
|
| 910 |
|
|
| 911 |
|
// get line and file from the previous level of the caller |
| 912 |
|
// TODO go deeper if this case exist? |
| 913 |
|
if ( ! isset($caller['file'])) { |
| 914 |
|
$caller['file'] = $bt[ $callstack_depth - 3 ]['file']; |
| 915 |
|
} |
| 916 |
|
if ( ! isset($caller['line'])) { |
| 917 |
|
$caller['line'] = $bt[ $callstack_depth - 3 ]['line']; |
| 918 |
|
} |
|
@@ 916-918 (lines=3) @@
|
| 913 |
|
if ( ! isset($caller['file'])) { |
| 914 |
|
$caller['file'] = $bt[ $callstack_depth - 3 ]['file']; |
| 915 |
|
} |
| 916 |
|
if ( ! isset($caller['line'])) { |
| 917 |
|
$caller['line'] = $bt[ $callstack_depth - 3 ]['line']; |
| 918 |
|
} |
| 919 |
|
|
| 920 |
|
try { |
| 921 |
|
echo "\n" . $caller['file'] . ':' . $caller['line'] . "\n"; |