file_get_contents 超时设置方法
$opts = array( 'http'=>array( 'method'=>"GET", 'timeout'=>3 ) ); file_get_contents('http://www.test.com/index.php',false, stream_context_create($opts));
$opts = array( 'http'=>array( 'method'=>"GET", 'timeout'=>3 ) ); file_get_contents('http://www.test.com/index.php',false, stream_context_create($opts));