How to turn off magic quotes in PHP configuration file? I am using XAMPP

前端 未结 1 1247
情书的邮戳
情书的邮戳 2020-12-22 09:34

What is the file? I have php.ini and php.ini-dist on my computer.

相关标签:
1条回答
  • 2020-12-22 10:06

    php.ini-dist is the sample config file that comes with PHP, php.ini is the live config so you will need to set in this file

    magic_quotes_gpc = off
    magic_quotes_runtime = off
    magic_quotes_sybase = off
    
    0 讨论(0)
提交回复
热议问题