一般服务器为了安全都会再php.ini配置中关闭报错功能。(display_errors=Off)

 

显示页面报错:(注意:加在网页最上面)

 

  1. <?php 
  2. if(!ini_get('display_errors')){ 
  3.     ini_set('display_errors','On'); 
  4. error_reporting(E_ALL);
  5.  
    error_reporting(E_ALL & ~E_NOTICE); //除notice注意之外的
  6. include("dfasfasdds.php"); 
  7.     sdfasdfsd 
  8. ?>