undefined什么意思 php 解决undefined index的办法总结。
程序员文章站
2022-04-18 09:49:16
...
1. 修改 php.ini 文件中
error_reporting = E_ALL
为
error_reporting = E_ALL & ~E_NOTICE
2.使用代码
ini_set( ‘error_reporting’, E_ALL ^ E_NOTICE );
ini_set( ‘display_errors’, ’0′ );
3.使用@抑制错误
@$name = $_GET['name'];
4.进行判断
if( !empty($_GET['name']) ) $name = $_GET['name'];
以上就介绍了undefined什么意思 php 解决undefined index的办法总结。,包括了undefined什么意思方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
上一篇: jquery如何判断浏览器是否是ie6
推荐阅读
-
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法
-
PHP FATAL ERROR: CALL TO UNDEFINED FUNCTION BCMUL()解决办法
-
PHP Undefined index报错的修复方法
-
php运行出现Call to undefined function curl_init()的解决方法
-
php Notice: Undefined index 错误提示解决方法
-
PHP运行出现Notice : Use of undefined constant 的完美解决方案分享
-
PHP运行出现Notice : Use of undefined constant 的解决办法
-
WxParse:thirdScriptError undefined;at xxx/xxx/xxx onLoad function;at api request success callback报错的解决办法
-
iOS【Undefined symbols for architecture i386: 错误的解决办法】
-
php Undefined index和Undefined variable的解决方法