forked from ILIAS-eLearning/ILIAS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinc.debug.php
executable file
·170 lines (147 loc) · 5.27 KB
/
inc.debug.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<?php
/*
+-----------------------------------------------------------------------------+
| ILIAS open source |
+-----------------------------------------------------------------------------+
| Copyright (c) 1998-2001 ILIAS open source, University of Cologne |
| |
| This program is free software; you can redistribute it and/or |
| modify it under the terms of the GNU General Public License |
| as published by the Free Software Foundation; either version 2 |
| of the License, or (at your option) any later version. |
| |
| This program is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
| |
| You should have received a copy of the GNU General Public License |
| along with this program; if not, write to the Free Software |
| Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
+-----------------------------------------------------------------------------+
*/
/**
* debugging functions
*
* @author Björn Heyser <[email protected]>
* @author Sascha Hofmann <[email protected]>
* @version $Id$
*
* @package ilias-develop
*/
/**
* shortcut for var_dump with enhanced debug information
*
* @author Björn Heyser <[email protected]>
* @author Sascha Hofmann <[email protected]>
* @access public
* @param mixed any number of parameters
*/
function vd()
{
list($file, $func) = getPhpSourceCodePositionInfo(1);
$numargs = func_num_args();
if ($numargs == 0)
{
return false;
}
$arg_list = func_get_args();
$num = 1;
include_once 'Services/Authentication/classes/class.ilAuthFactory.php';
if( ilAuthFactory::getContext() == ilAuthFactory::CONTEXT_CRON )
$cli = true;
else $cli = false;
foreach ($arg_list as $arg)
{
if(!$cli)
{
$printbefore = "<pre style=\"text-align:left;\">";
$printbefore .= "$file - $func - variable $num:<br/>";
$printafter = "</pre><br/>";
}
else
{
$printbefore = "\n\n_________________________________________________".
"_________________________________________________\n";
$printbefore .= "$file - $func - variable $num:\n\n";
$printafter = "_________________________________________________".
"_________________________________________________\n\n";
}
echo $printbefore;
var_dump($arg);
echo $printafter;
$num++;
}
// BH: php 5.3 seems to not flushing the output consequently so following redirects are still performed
// and the output of vd() would be lost in nirvana if we not flush the output manualy
flush(); ob_flush();
}
/**
* shortcut for print_r
*
* @author Björn Heyser <[email protected]>
* @access public
* @param mixed any number of parameters
* @param string name of variable (optional)
*/
function pr($var,$name = '')
{
if($name != '') $name .= ' = ';
$print = $name.print_r($var,true);
if( ilAuthFactory::getContext() == ilAuthFactory::CONTEXT_CRON )
{
$hr = "\n---------------------------------------------------------------\n";
echo $hr.$print.$hr;
}
else
{
echo '<pre>'.$print.'</pre>';
}
// BH: php 5.3 seems to not flushing the output consequently so following redirects are still performed
// and the output of vd() would be lost in nirvana if we not flush the output manualy
flush(); ob_flush();
}
/**
* prints an information about the function that called
* the function that invoked this function
* (the optional backjump param conrols the level in backtrace)
*
* @author Björn Heyser <[email protected]>
* @access public
* @param integer $backjumps
*/
function cf($backjumps = 1)
{
list($fileC, $funcC) = getPhpSourceCodePositionInfo( ($backjumps - 1) + 1 );
list($fileF, $funcF) = getPhpSourceCodePositionInfo( ($backjumps) + 1 );
echo "<pre style=\"text-align:left;\">$fileC - $funcC\nIS CALLED FROM: $fileF - $funcF</pre>";
// BH: php 5.3 seems to not flushing the output consequently so following redirects are still performed
// and the output of vd() would be lost in nirvana if we not flush the output manualy
flush(); ob_flush();
}
/**
* returns an array containing function information from backtrace
* (the optional backjump param conrols the level in backtrace)
*
* @author Björn Heyser <[email protected]>
* @access public
* @param integer $backjumps
*/
function getPhpSourceCodePositionInfo($backjumps = 0)
{
$i = $backjumps;
$j = $backjumps + 1;
$e = new Exception();
$trace = $e->getTrace();
$file = basename($trace[$i]['file']).':'.$trace[$i]['line'];
$func = '';
if( isset($trace[$j]['class']) && strlen($trace[$j]['class']) )
{
$func = $trace[$j]['class'];
if( isset($trace[$j]['class']) && strlen($trace[$j]['class']) )
$func .= $trace[$j]['type'];
else $func .= '::';
}
$func .= $trace[$j]['function'].'()';
return array($file, $func);
}