2012-05-08 18 views

回答

2

原來與Symfony無關。我正在使用MAMP,並且magic_quotes_gpc已打開。對於未來的參考,去你的php.ini文件,並設置

magic_quotes_gpc = Off 

要檢查魔術引號是否開啓,運行只是做

if(get_magic_quotes_gpc()) { die('magic quotes turned on'); } 
相關問題