Several solutions to php:undefined index

Source: Internet
Author: User

Usually use $_post['],$_get['] to get the parameters in the form will appear Notice: Undefined index:--------;

Although it is possible to hide this hint by setting the error display, there is a hidden danger that these prompts are logged in the server's log, causing the log file to be unusually large.

Through on-line search and their own actual combat to summarize several solutions;

Method 1: Server configuration Modifications
Modify the php.ini configuration file, error_reporting = E_all & ~e_notice

Method 2: Initialize the variable.

Method 3: Make a judgment Isset ($_post["]), Empty ($_post[")) if--else

Method 4: Add @,@ before the notice code to indicate that the line has errors or warnings do not output, @ $username =$_post[' username '];

Method 5: The last one is very practical, is a function written by others, through this function to pass the value.

Define a function:

function _get ($str) {    $val =!  Empty($_get[$str])? $_get[$STR]: null;    return $val;}

Then use _get (' str ') instead of $_get[' str ').

Several solutions to php:undefined index

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.