How can I replace the deprecated set_magic_quotes_runtime in php?

前端 未结 10 2223
无人及你
无人及你 2020-12-03 03:58

I\'m getting this message when I try to run a php script I have to use but did not write.

Deprecated: Function set_magic_quotes_runtime() is deprecated in /o         


        
10条回答
  •  盖世英雄少女心
    2020-12-03 04:45

    Gust add the prefix "@" before the function to be @set_magic_quotes_runtime(0); Not supported anymore in php 5.4, and don't remove or disable the function

提交回复
热议问题