How can I replace the deprecated set_magic_quotes_runtime in php?

前端 未结 10 2200
无人及你
无人及你 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:42

    I used FPDF v. 1.53 and didn't want to upgrade because of possible side effects. I used the following code according to Yacoby:

    Line 1164:

    if (version_compare(PHP_VERSION, '5.3.0', '<')) {
        $mqr=get_magic_quotes_runtime();
        set_magic_quotes_runtime(0);
    }
    

    Line 1203:

    if (version_compare(PHP_VERSION, '5.3.0', '<')) {
        set_magic_quotes_runtime($mqr);
    }
    

提交回复
热议问题