woff 發表於 2015-2-23 19:06:42

如何解決 set_magic_quotes_runtime() error

導致這個提示的原因是在PHP5.3後此特性(set_magic_quotes_runtime())已經關閉。
而且在PHP6中已經完全移除此特性。
你可以註釋或者刪除掉出錯的行,或者是在set_magic_quotes_runtime()前面加@符號。

set_magic_quotes_runtime(0);
replace with:
ini_set("magic_quotes_runtime", 0);

mhlap 發表於 2016-8-30 18:12:15

好,谢谢你,大家都需要的好帖











static/image/common/sigline.gif
供应12V7A监控器恒压电源
頁: [1]
查看完整版本: 如何解決 set_magic_quotes_runtime() error