暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Debug.php 7.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: liu21st <liu21st@gmail.com>
  10. // +----------------------------------------------------------------------
  11. namespace think;
  12. use think\exception\ClassNotFoundException;
  13. use think\response\Redirect;
  14. class Debug
  15. {
  16. /**
  17. * @var array 区间时间信息
  18. */
  19. protected static $info = [];
  20. /**
  21. * @var array 区间内存信息
  22. */
  23. protected static $mem = [];
  24. /**
  25. * 记录时间(微秒)和内存使用情况
  26. * @access public
  27. * @param string $name 标记位置
  28. * @param mixed $value 标记值(留空则取当前 time 表示仅记录时间 否则同时记录时间和内存)
  29. * @return void
  30. */
  31. public static function remark($name, $value = '')
  32. {
  33. // 记录时间和内存使用
  34. self::$info[$name] = is_float($value) ? $value : microtime(true);
  35. if ('time' != $value) {
  36. self::$mem['mem'][$name] = is_float($value) ? $value : memory_get_usage();
  37. self::$mem['peak'][$name] = memory_get_peak_usage();
  38. }
  39. }
  40. /**
  41. * 统计某个区间的时间(微秒)使用情况 返回值以秒为单位
  42. * @access public
  43. * @param string $start 开始标签
  44. * @param string $end 结束标签
  45. * @param integer $dec 小数位
  46. * @return string
  47. */
  48. public static function getRangeTime($start, $end, $dec = 6)
  49. {
  50. if (!isset(self::$info[$end])) {
  51. self::$info[$end] = microtime(true);
  52. }
  53. return number_format((self::$info[$end] - self::$info[$start]), $dec);
  54. }
  55. /**
  56. * 统计从开始到统计时的时间(微秒)使用情况 返回值以秒为单位
  57. * @access public
  58. * @param integer $dec 小数位
  59. * @return string
  60. */
  61. public static function getUseTime($dec = 6)
  62. {
  63. return number_format((microtime(true) - THINK_START_TIME), $dec);
  64. }
  65. /**
  66. * 获取当前访问的吞吐率情况
  67. * @access public
  68. * @return string
  69. */
  70. public static function getThroughputRate()
  71. {
  72. return number_format(1 / self::getUseTime(), 2) . 'req/s';
  73. }
  74. /**
  75. * 记录区间的内存使用情况
  76. * @access public
  77. * @param string $start 开始标签
  78. * @param string $end 结束标签
  79. * @param integer $dec 小数位
  80. * @return string
  81. */
  82. public static function getRangeMem($start, $end, $dec = 2)
  83. {
  84. if (!isset(self::$mem['mem'][$end])) {
  85. self::$mem['mem'][$end] = memory_get_usage();
  86. }
  87. $size = self::$mem['mem'][$end] - self::$mem['mem'][$start];
  88. $a = ['B', 'KB', 'MB', 'GB', 'TB'];
  89. $pos = 0;
  90. while ($size >= 1024) {
  91. $size /= 1024;
  92. $pos++;
  93. }
  94. return round($size, $dec) . " " . $a[$pos];
  95. }
  96. /**
  97. * 统计从开始到统计时的内存使用情况
  98. * @access public
  99. * @param integer $dec 小数位
  100. * @return string
  101. */
  102. public static function getUseMem($dec = 2)
  103. {
  104. $size = memory_get_usage() - THINK_START_MEM;
  105. $a = ['B', 'KB', 'MB', 'GB', 'TB'];
  106. $pos = 0;
  107. while ($size >= 1024) {
  108. $size /= 1024;
  109. $pos++;
  110. }
  111. return round($size, $dec) . " " . $a[$pos];
  112. }
  113. /**
  114. * 统计区间的内存峰值情况
  115. * @access public
  116. * @param string $start 开始标签
  117. * @param string $end 结束标签
  118. * @param integer $dec 小数位
  119. * @return string
  120. */
  121. public static function getMemPeak($start, $end, $dec = 2)
  122. {
  123. if (!isset(self::$mem['peak'][$end])) {
  124. self::$mem['peak'][$end] = memory_get_peak_usage();
  125. }
  126. $size = self::$mem['peak'][$end] - self::$mem['peak'][$start];
  127. $a = ['B', 'KB', 'MB', 'GB', 'TB'];
  128. $pos = 0;
  129. while ($size >= 1024) {
  130. $size /= 1024;
  131. $pos++;
  132. }
  133. return round($size, $dec) . " " . $a[$pos];
  134. }
  135. /**
  136. * 获取文件加载信息
  137. * @access public
  138. * @param bool $detail 是否显示详细
  139. * @return integer|array
  140. */
  141. public static function getFile($detail = false)
  142. {
  143. $files = get_included_files();
  144. if ($detail) {
  145. $info = [];
  146. foreach ($files as $file) {
  147. $info[] = $file . ' ( ' . number_format(filesize($file) / 1024, 2) . ' KB )';
  148. }
  149. return $info;
  150. }
  151. return count($files);
  152. }
  153. /**
  154. * 浏览器友好的变量输出
  155. * @access public
  156. * @param mixed $var 变量
  157. * @param boolean $echo 是否输出(默认为 true,为 false 则返回输出字符串)
  158. * @param string|null $label 标签(默认为空)
  159. * @param integer $flags htmlspecialchars 的标志
  160. * @return null|string
  161. */
  162. public static function dump($var, $echo = true, $label = null, $flags = ENT_SUBSTITUTE)
  163. {
  164. $label = (null === $label) ? '' : rtrim($label) . ':';
  165. ob_start();
  166. var_dump($var);
  167. $output = preg_replace('/\]\=\>\n(\s+)/m', '] => ', ob_get_clean());
  168. if (IS_CLI) {
  169. $output = PHP_EOL . $label . $output . PHP_EOL;
  170. } else {
  171. if (!extension_loaded('xdebug')) {
  172. $output = htmlspecialchars($output, $flags);
  173. }
  174. $output = '<pre>' . $label . $output . '</pre>';
  175. }
  176. if ($echo) {
  177. echo($output);
  178. return;
  179. }
  180. return $output;
  181. }
  182. /**
  183. * 调试信息注入到响应中
  184. * @access public
  185. * @param Response $response 响应实例
  186. * @param string $content 返回的字符串
  187. * @return void
  188. */
  189. public static function inject(Response $response, &$content)
  190. {
  191. $config = Config::get('trace');
  192. $type = isset($config['type']) ? $config['type'] : 'Html';
  193. $class = false !== strpos($type, '\\') ? $type : '\\think\\debug\\' . ucwords($type);
  194. unset($config['type']);
  195. if (!class_exists($class)) {
  196. throw new ClassNotFoundException('class not exists:' . $class, $class);
  197. }
  198. /** @var \think\debug\Console|\think\debug\Html $trace */
  199. $trace = new $class($config);
  200. if ($response instanceof Redirect) {
  201. // TODO 记录
  202. } else {
  203. $output = $trace->output($response, Log::getLog());
  204. if (is_string($output)) {
  205. // trace 调试信息注入
  206. $pos = strripos($content, '</body>');
  207. if (false !== $pos) {
  208. $content = substr($content, 0, $pos) . $output . substr($content, $pos);
  209. } else {
  210. $content = $content . $output;
  211. }
  212. }
  213. }
  214. }
  215. }