-
Notifications
You must be signed in to change notification settings - Fork 0
/
tools.php
38 lines (33 loc) · 986 Bytes
/
tools.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
<?php
/**
* 背锅人 gushi Jiang
* create_date 2021/6/11
* create_time 2:09 下午
*/
/**
* TP扒过来的浏览器友好的变量输出
* @access public
* @param mixed $var 变量
* @param boolean $echo 是否输出(默认为 true,为 false 则返回输出字符串)
* @param string|null $label 标签(默认为空)
* @return null|string
*/
function dump($var, $echo = true, $label = null, $flags = ENT_SUBSTITUTE) {
$label = (null === $label) ? '' : rtrim($label) . ':';
ob_start();
var_dump($var);
$output = preg_replace('/\]\=\>\n(\s+)/m', '] => ', ob_get_clean());
if (php_sapi_name() == 'cli') {
$output = PHP_EOL . $label . $output . PHP_EOL;
} else {
if (!extension_loaded('xdebug')) {
$output = htmlspecialchars($output, $flags);
}
$output = '<pre>' . $label . $output . '</pre>';
}
if ($echo) {
echo($output);
return null;
}
return $output;
}