日期:2014-08-30 阅读:1812
dmandwp系统 - wordpress系统和DM系统区块建站>>
原文:https://www.drupal.org/node/1056468
当写模块时,php语法有错时,会出现白屏,
但想查看提示错误信息。
在setting.php里加上:
<?php
error_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);
//Note: Do not include the opening and closing PHP tags when you copy this code
?>