`
bal1212
  • 浏览: 76894 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

PHP Notice: Undefined index: ... 问题的解决方案

PHP 
阅读更多

首先,这个不是错误,是warning。所以如果服务器不能改,每个变量使用前应当先定义。

方法1:服务器配置修改
修改php.ini配置文件,error_reporting = E_ALL & ~E_NOTICE

方法2:对变量进行初始化,规范书写(比较烦琐,因为有大量的变量)。但还没有找到好定义方法,望大家指教

方法3:每个文件头部加上:error_reporting(0); 如果不行,只有打开php.ini,找到display_errors,设置为display_errors = Off。以后任何错误都不会提示。ini_set("display_errors", 0);
方法4 :做判断:isset($_GET["page"])      if-else判断

或者加上'@'表示这行如果有错误或是警告不要輸出
如:@$page=$_GET["page"]

方法5:file1.php文件把$xx变量付一个值,用post传递给file2.php,
如果file2.php没有$xx的定义,而直接使用$yy=$xx; 系统就会报错:"undifined variaable $xx", 如果file2.php的文件开始用$xx="";定义,那么file1.php的$xx值就传不过来了!
分享到:
评论

相关推荐

    php Notice: Undefined index 错误提示解决方法

    这样做可以让PHP在运行时不再报告NOTICE级别的错误,从而不再显示"Undefined index"这类的警告。然而,这种做法通常不推荐,因为它会隐藏一些可能需要关注的错误信息。 2. 代码中进行判断:这是更加严谨的处理方式...

    PHP提示Notice: Undefined variable的解决办法

    需要设置显示错误级别,来解决问题。 网络上的通用解决办法是修改php.ini的配置: 解决方法: 1) error_reporting设置: 找到error_reporting = E_ALL 修改为error_reporting = E_ALL & ~E_NOTICE 2) register_...

    php Undefined index和Undefined variable的解决方法

    $act $ POST["act"]; 用以上代码总是提示 Notice: Undefined index: act in F: windsflybook post php on line 18 另外 有时还会出现 引用内容 Notice: Undefined variable: Submit

    php Undefined index的问题

    又是一个提交程序的小bug,以前写程序的时候对提交数据几乎没做什么验证判断,比如接受 tj 的值,根本就没有定义数据类型就直接进行提交了,所以导至了 Notice: Undefined index: tj in //index.php on line 67 这样...

    PHP运行出现Notice : Use of undefined constant 的完美解决方案分享

    Notice: Use of undefined constant ALL_PS – assumed ‘ALL_PS’ in E:\Server\vhosts\www.lvtao.net\global.php on line 50 Notice: Undefined index: EaseTemplateVer in E:\Server\vhosts\...

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

    在处理PHP开发中遇到的常见错误时,"Undefined index"错误是一个基本而重要的问题。这个错误通常发生在尝试访问在$_GET、$_POST或$_REQUEST等超全局数组中未定义的索引时。本例中,错误信息“Notice: Undefined ...

    Android代码-StatusBarUtil

    I fixed typo, change "statusbaruitl" to "statusbarutil", please notice this. Call method you need after setContentView(), such as : setContentView(R.layout.main_activity); ... StatusBarU

    PHP 中提示undefined index如何解决(多种方法)

    使用以上代码总是会提示Notice: Undefined index: act in D:\test\post.php on line 20另外,有时还会出现Notice: Undefined variable: Submit …… 等一些这样的提醒提示出现上面这些是 PHP 的提示而非报错,PHP ...

    php提示undefined index的几种解决方法

    用以上代码总是提示 Notice: Undefined index: act in D:\test\post.php on line 20 另外,有时还会出现 Notice: Undefined variable: Submit …… 等一些这样的提示 出现上面这些是 PHP 的提示而非报错,PHP 本身...

    2014高考英语完形填空基础极品训练题(8).doc

    notice D. admire 解析:老师告诉作者,如果犯了错,要保持微笑,这样观众就不会注意到,用 notice。答案:C ( ) 14. A. suggestion B. decision C. rule D. advice 解析:作者尽力按照老师的建议去做,advice 符合...

    Ashampoo(阿香婆)最新全系列注册机-2010-07-03发布

    注册机包含以下系列: ...(详细使用方法参见这里:http://bbs.bios.net.cn/viewthread.php?from=notice&tid=147622)..... 原版官方软件下载地址:http://www2.ashampoo.com/webcache/html/1/prod_overview_18_RMB.htm

    http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd

    granted in perpetuity, provided that the above copyright notice and this paragraph appear in all copies. The copyright holders make no representation about the suitability of the DTD for any ...

    英文商业书信用语概述页.pdf

    - "We take the advantage of this opportunity to bring before your notice...":我们借此机会提请您注意... - "Please allow us to call your attention to...":请允许我们提醒您... - "Permit us to remind ...

    libiconv-1.15.tar.gz

    通过正确安装libiconv,可以解决这些问题,使git能够顺利运行。 总结,libiconv-1.15是Linux平台上的一个重要组件,特别是在涉及到字符编码转换的场景下。通过源码编译的方式安装libiconv,不仅保证了与系统的兼容...

    apache-maven-3.8.5

    比较大,里面包含了库文件... 1 atlas atlas 5141 3月 5 11:30 NOTICE -rwxrwxr-x. 1 atlas atlas 2612 3月 5 11:30 README.txt drwxrwxr-x. 59 atlas atlas 4096 6月 17 17:49 repository 注意setting配置文件仓库地址

Global site tag (gtag.js) - Google Analytics