php undefined function get_magic_quotes_gpc()
if ( get_magic_quotes_gpc() ),改为 if ( function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc() )。
记录一些技术资料等等
if ( get_magic_quotes_gpc() ),改为 if ( function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc() )。