PHP Magic Reference
???????? When migrating the system in the previous period, a strange problem was found, and whenever the data in a form was saved, the default escape of the double quotes in the data was \ ". For the most part of the day has not been located to the cause, has been thought to be a problem with the system coding. Or the almighty Baidu saved me, after the search only to know that PHP in the Apache server has a setting specifically to deal with this situation.
??????
??????? For security reasons, the Apache server will escape the double quotes by default, as long as the set MAGIC_QUOTES_GPC is off and the above problem is resolved. Or you can determine whether the MAGIC_QUOTES_GPC is open in the program, if it is turned on, use stripslashes to reverse the meaning, of course, calling this method will lose some performance.
?
Mark below:
Apache configuration: MAGIC_QUOTES_GPC = off;