public static function file_get_contents($url)
{
$ctx = stream_context_create(array(
'http' => array(
'timeout' => 3
)
)
);
$ret = file_get_contents($url, 0, $ctx);
return $ret;
}