Notice: Undefined index: page in E:\PHP\test.php on line 14

前端之家收集整理的这篇文章主要介绍了Notice: Undefined index: page in E:\PHP\test.php on line 14前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

治標不治本的就是將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;

猜你在找的PHP相关文章