当前位置:首页 > PHP教程 > php函数 > 列表

php中自定义函数dump查看数组信息类似var_dump

发布:smiling 来源: PHP粉丝网  添加日期:2020-09-01 15:27:10 浏览: 评论:0 

本文为大家介绍下在php中自定义函数dump查看数组信息,具体示例如下,希望对大家有所帮助。

这个很早就有了,比php自带的var_dump好用多了,代码如下:

  1. function dump($vars$label = ''$return = false) {  
  2. if (ini_get('html_errors')) {  
  3. $content = "<pre>\n";  
  4. if ($label != '') {  
  5. $content .= "<strong>{$label} :</strong>\n";  
  6. //phpfensi.com 
  7. $content .= htmlspecialchars(print_r($vars, true));  
  8. $content .= "\n</pre>\n";  
  9. else {  
  10. $content = $label . " :\n" . print_r($vars, true);  
  11. }  
  12. if ($return) { return $content; }  
  13. echo $content;  
  14. return null;  

Tags: php自定义函数 dump

分享到: