undefined什么意思 php 解决undefined index的办法总结。
程序员文章站
2022-03-18 21:35:52
...
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教程有兴趣的朋友有所帮助。
推荐阅读
-
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的解决方法
-
PHP Notice: undefined index 完美解决方法 PHPundefined index解决方法
-
详解vuex数据传输的两种方式及this.$store undefined的解决办法
-
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法