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

 

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

 

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