為什么我會報這個錯誤
? ? 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
2016-10-08
addslashes 是php內置函數呀。你檢查下php的環境
2016-09-28
addslashes 不是PHP的內置函數嗎