打印函数 P

老虎说测试 脚本开发字数 350阅读1分10秒阅读模式
摘要很多时候,我们在调试代码的时候需要打印信息,而PHP提供的打印函数或多或少,不能满足我们的胃口,为了更好的打印信息,方便调试信息,特封装了p函数来解决这个问题。

很多时候,我们在调试代码的时候需要打印信息,而PHP提供的打印函数或多或少,不能满足我们的胃口,为了更好的打印信息,方便调试信息,特封装了p函数来解决这个问题。

函数:文章源自陈学虎-https://chenxuehu.com/article/2015/02/4283.html

[php]文章源自陈学虎-https://chenxuehu.com/article/2015/02/4283.html

function p($arr){文章源自陈学虎-https://chenxuehu.com/article/2015/02/4283.html

header('Content-type:text/html;Charset=utf-8');文章源自陈学虎-https://chenxuehu.com/article/2015/02/4283.html

echo "<pre style='position:relative;z-index:1000;padding:10px;border-radius:5px;background:#F5F5F5;border:1px solid #aaa;font-size:14px;line-height:18px;opacity:0.9;'>";文章源自陈学虎-https://chenxuehu.com/article/2015/02/4283.html

print_r($arr);文章源自陈学虎-https://chenxuehu.com/article/2015/02/4283.html

echo "</pre>";文章源自陈学虎-https://chenxuehu.com/article/2015/02/4283.html

}文章源自陈学虎-https://chenxuehu.com/article/2015/02/4283.html

[/php]文章源自陈学虎-https://chenxuehu.com/article/2015/02/4283.html 文章源自陈学虎-https://chenxuehu.com/article/2015/02/4283.html

 
  • 版权声明:本文为原创文章,转载请附上原文出处链接及本声明。
  • 转载请注明:打印函数 P | https://chenxuehu.com/article/2015/02/4283.html