在error.log日志文件里面出现的错误提示,虽然不影响正常运行,但是最好去掉 4.ERROR Global - Error caught: #8192: Function get_magic_quotes_gpc() is deprecated in /pixmicat-develop/pixmicat.php on line 680 $upsizeHDR += strlen('Content-Disposition: form-data; name="' . $header . '"' . "\r\n\r\n" . (get_magic_quotes_gpc() ? stripslashes($value) : $value) . "\r\n"); 因为get_magic_quotes_gpc() 不再适合高版本,去掉或者替换 改为 $upsizeHDR += strlen('Content-Disposition: form-data; name="' . $header . '"' . "\r\n\r\n" . ( stripslashes($value) ) . "\r\n");