Fatal error: Cannot redeclare gzdecode() /beartech/phprpc/compat.php on line 181

因为php5.4已经自带了gzdecode函数,所以导致了此冲突;使用

if(!function_exists('gzdecode')){
}

包含phprpc的函数即可.