PHP errors Useofundefinedconstantprop_values-ass... The problem is as follows: what is the cause of the following errors in the PHP program. Notice: Useofundefinedconstantmulti-assumedmultiinwwwusers ***. comtbedittbgoods. p PHP reports error Use of undefined constant prop_values-ass...
The problem is as follows:
What is the cause of the following error in the PHP program.
Notice: Use of undefined constant multi-assumed 'multi 'in/www/users /***. com/tb/edittbgoods. php on line 104 Notice: Use of undefined constant must-assumed 'must 'in/www/users /***. com/tb/edittbgoods. php on line 105 Notice: Use of undefined constant must-assumed 'must 'in/www/users /***. com/tb/edittbgoods. php on line 105 Notice: Use of undefined constant name-assumed 'name' in/www/users /***. com/tb/edittbgoods. php on line 106 Notice: Use of undefined constant name-assumed 'name' in/www/users /***. com/tb/edittbgoods. php on line 106 Notice: Use of undefined constant pid-assumed 'pid 'in/www/users /***. com/tb/edittbgoods. php on line 107
?
This is not an error. it means that your definition is not standard.
If you do not guess correctly, your variable should be $ xxx [multi] = $ xxx. Change to $ xxx ['multi '] = $ xxx; enclose it with quotation marks.
Another solution is to modify php. ini and change error_reporting = E_ALL to error_reporting = E_ALL &~ E_NOTICE. However, we recommend that you use the first solution to standardize as much as possible.
The above is for reference.
?
Original article: http://www.csdn123.net/a/zhidao/20131121pm/195002.htm
?