入这么一句:
include_once(''./lib/debug.php'');
例如以下:c:\www\projectName\hellodebug\index.php
复制代码 代码如下:
<?php
include_once(''./debug/lib/debug.php'');
$faint = ''helloworld ,debuging'';
debug($arrb);
?>
什么?你不想每个页面都写这么一句?
那么看看第二种方法,
这里也有两种方式,
1.修改php.ini 加入以下内容(修改成你自身的目录):
auto_prepend_file = "c:\www\projectName\debug\auto_prepend.php"
auto_append_file = "c:\www\projectName\debug\auto_append.php"
2.修改.htaccess文件(注:此方法偶没试过,嘿嘿)
php_value auto_prepend_file "c:\www\projectName\debug\auto_prepend.php"
php_value auto_append_file "c:\www\projectName\debug\auto_append.php"
这样的话就可以方便整个项目的调试.
如果是AJAX开发的话,还有需要的地方,具体请参照文档.(因本人还没那个需要,所以暂时先跳开了,不要拍砖,嘿嘿.)