问答详情
源自:4-5 [MVC实例]入口文件功能

为什么我会报这个错误


    function daddslashes($str){

        return (!get_magic_quotes_gpc())?addslashes($str):$str;

    }



Description Resource Path Location Type

Call to undefined function 'addslashes' function.php /MVC/mvc line 31 PHP Semantic Problem

Description Resource Path Location Type

Call to undefined function 'get_magic_quotes_gpc' function.php /MVC/mvc line 31 PHP Semantic Problem


提问者:qq_唐风依旧_0 2016-09-28 11:17

个回答

  • PengCheng
    2016-10-08 19:14:19

    addslashes 是php内置函数呀。你检查下php的环境


  • qq_唐风依旧_0
    2016-09-28 11:18:46

    addslashes 不是PHP的内置函数吗