国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發 > PHP > 正文

Notice: Undefined offset 的解決方法

2024-05-04 23:21:10
字體:
來源:轉載
供稿:網友

今天在幫朋友調試服務器的時候發現以前wp的404搞的偽靜態竟然用不了了,然后就試著訪問404出錯頁,結果首部出現

Notice: Undefined offset: 1 in D:wwwrootwraskseo404.php on line 5Notice: Undefined offset: 2 in D:wwwrootwraskseo404.php on line 5Notice: Undefined offset: 2 in D:wwwrootwraskseo404.php on line 7Notice: Undefined offset: 1 in D:wwwrootwraskseo404.php on line 12
這問題很常出現在數組中的,程序是能正確地運行下去,但是在屏幕上總會出現這樣的提示:NoticeUndefinedoffset: ….. 網上普遍是采用抑制其顯示的方法,即更改php.ini文件中error_repoting的參數為”EALL & Notice “,這樣屏幕就能正常顯示了.
問題是解決了,但是總想不透offset:接下去的數字(如 NoticeUndefined offset: 4 ….)是什么意思.還有,句子里的語法明明是正確的,為什么會出現警告.冷靜地思考了好幾遍并嘗試了每種可能,終于找到了答案.offset:接下去的數字是出錯的數組下標,一般是超出了數組的取值范圍,如定義了數組$A[]有10個元數,如果出現了$A[10]就會出現錯誤(Notice: Undefined offset: 10 ….),因為數組的下標是從0開始的,所以這個數組的下標就只能是0~9.因此在出現這類問題時,不要急于用抑制顯示的方法(更簡單的可以在當前文件的最前面加上一句”error_reporting(填offset:接下去的那個數字);,一定要注意你所用的數組下標,仔細思考一下,問題一定會很快得到解決的 !發
也有可能是unset數組后再嘗試讀取其內容,php手冊中有:
Just to confirm, USING UNSET CAN DESTROY AN ENTIRE ARRAY. I couldn't find reference to this anywhere so I decided to write this.The difference between using unset and using $myarray=array(); to unset is that obviously the array will just be overwritten and will still exist.<?php$myarray=array("Hello","World");echo $myarray[0].$myarray[1];unset($myarray);//$myarray=array();echo $myarray[0].$myarray[1];echo $myarray;?>Output with unset is:<?HelloWorldNotice: Undefined offset: 0 in C:webpagesdainsidermyarray.php on line 10Notice: Undefined offset: 1 in C:webpagesdainsidermyarray.php on line 10Output with $myarray=array(); is:?><?HelloWorldNotice: Undefined offset: 0 in C:webpagesdainsidermyarray.php on line 10Notice: Undefined offset: 1 in C:webpagesdainsidermyarray.php on line 10Array?>

OK,問題解決,該睡覺了……

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 博罗县| 永定县| 安庆市| 枣强县| 罗江县| 清流县| 铁岭县| 石泉县| 潼南县| 和田县| 康定县| 萨迦县| 屏山县| 黄平县| 郴州市| 黎平县| 四平市| 巴彦县| 青龙| 红原县| 伊通| 育儿| 开鲁县| 陆川县| 宜兰市| 南昌县| 淮南市| 辉南县| 武义县| 临朐县| 灌南县| 马鞍山市| 鹤壁市| 义乌市| 桐梓县| 巴林右旗| 东平县| 皋兰县| 四子王旗| 四子王旗| 洪雅县|