PHP和WordPress:调试

前端之家收集整理的这篇文章主要介绍了PHP和WordPress:调试前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在为wordpress编写一些插件主题,我发现很难调试,因为某种程度上,当页面加载时,$_GET,$_POST和$_REQUEST都是空的.即使设置了错误报告,除非出现致命错误,否则我不会收到除空白页面之外的错误消息.有没有为wordpress启用“调试模式”?

谢谢!

Pear Debug wordpress插件http://wordpress.org/extend/plugins/wp-pear-debug/

Update 4/08/2015:上述插件在几年内还没有更新.您还可以在wp-config.php中使用内置的wordpress PHP调试功能,即:

// Enable WP_DEBUG mode
define('WP_DEBUG',true);

// Enable Debug logging to the /wp-content/debug.log file
define('WP_DEBUG_LOG',true);

// Disable display of errors and warnings 
define('WP_DEBUG_DISPLAY',false);
@ini_set('display_errors',0);

// Use dev versions of core JS and CSS files (only needed if you are modifying these core files)
define('SCRIPT_DEBUG',true);

有关完整的文档,请参阅https://codex.wordpress.org/Debugging_in_WordPress

原文链接:https://www.f2er.com/php/132030.html

猜你在找的PHP相关文章