PHP error use of undefined constant prop_values-ass ...
The problem is as follows:
What is the reason for the following error in the PHP program?
Notice:use of undefined constant multi-assumed ' multi ' in/www/users/***.com/tb/edittbgoods.php on line 104notice:use of undefined constant must-assumed ' must ' in/www/users/***.com/tb/edittbgoods.php on line 105notice:use of undefined C Onstant must-assumed ' must ' in/www/users/***.com/tb/edittbgoods.php on line 105notice:use of undefined constant name- Assumed ' name ' in/www/users/***.com/tb/edittbgoods.php on line 106notice:use of undefined constant name-assumed ' name ' In/www/users/***.com/tb/edittbgoods.php on line 106notice:use of undefined constant pid-assumed ' pid ' in/www/users/ . com/tb/edittbgoods.php on line 107
?
This is not an error, it is said that your definition is not standardized.
If you are not mistaken, your variables should be $xxx [multi] = $xxx; Change to $xxx[' multi '] = $xxx; enclose the quotation mark.
Another solution is to modify php.ini to find error_reporting = e_all change to error_reporting = E_all & ~e_notice. However, it is recommended to use the first solution, can be standardized as far as possible to standardize some no harm.
Above, for reference.
?
Original: http://www.csdn123.net/a/zhidao/20131121pm/195002.htm
?