写个测试类,在服务器上运行,用浏览器访问aa方法,aa方法中以http形式访问bb方法,bb方法中打印$_SERVER给aa,在浏览器中搜索REMOTE_HOST,多测试几次即可得到服务器所有出口ip

class test
{
public function aa(){
// REMOTE_HOST
$res = file_get_contents("http://your.domain/path-to-bb");
echo "<pre>";
var_dump(json_decode($res,true));
}
public function bb(){
echo json_encode($_SERVER);
exit;
}
}