Php: several solutions for undefined index: undefinedindex

Source: Internet
Author: User

Php: several solutions for undefined index: undefinedindex

When $ _ post [''] and $ _ get [''] are used to obtain parameters in the formNotice: Undefined index :--------;

 

Although you can hide this prompt by setting the error display mode, there is also a risk that these prompts will be recorded in the server logs, resulting in a huge Log File exception.

Summarize several solutions by searching on the Internet and using your own practices;

Method 1: Modify server configurations
Modify the php. ini configuration file, error_reporting = E_ALL &~ E_NOTICE

Method 2: Initialize the variable.

Method 3: Judge isset ($ _ post ['']), empty ($ _ post ['']) if -- else

Method 4: Add @ before the notice code appears. @ indicates that the line has an error or the warning is not output. @ $ username = $ _ post ['username'];

Method 5: The last one is very practical. It is a function written by someone else, through which values are transmitted.

 

Define a function:

Function _ get ($ str) {$ val =! Empty ($ _ GET [$ str])? $ _ GET [$ str]: null; return $ val ;}

And then directly use_ Get ('str ')Just replace $ _ GET ['str ~

 

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.