php中(zhōng)變量如果未定義,php的默認配置會打出警告信息 Notice: Undefined variable,影響布局。
解決方法:
方法1、修改php.ini,将error_reporting = E_ALL 修改爲error_reporting = E_ALL & ~E_NOTICE
如果什麽錯誤都不想讓顯示,直接修改:display_errors = Off。
方法2、在php頁面頂部添加 error_reporting(E_ALL & ~E_NOTICE);
解決方法:
方法1、修改php.ini,将error_reporting = E_ALL 修改爲error_reporting = E_ALL & ~E_NOTICE
如果什麽錯誤都不想讓顯示,直接修改:display_errors = Off。
方法2、在php頁面頂部添加 error_reporting(E_ALL & ~E_NOTICE);