VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php中自定义函数dump查看数组信息类似var_dump

本文为大家介绍下在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;  

出处:http://www.phpfensi.com/php/20200901/13221.html


相关教程