当前位置:Gxlcms > PHP教程 > Notice:Undefinedindex:pageinE:PHPtest.phponline14_PHP教程

Notice:Undefinedindex:pageinE:PHPtest.phponline14_PHP教程

时间:2021-07-01 10:21:17 帮助过:8人阅读

治標不治本的就是將php.ini內的reporting部份修改,讓notice不顯示
error_reporting = E_ALL; display all errors, warnings and notices
改成
error_reporting = E_ERROR & ~E_NOTICE & ~E_WARNING

不然
isset($_GET["page"])做個if-else判斷!!

----修正後原始碼如下----
if(isset($_GET["page"]))$page=$_GET["page"];
else $page=1;


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/322659.htmlTechArticle治標不治本的就是將php.ini內的reporting部份修改,讓notice不顯示 error_reporting = E_ALL; display all errors, warnings and notices 改成 error_reporting = E_ERROR...

人气教程排行