## 一、请求接口(file_get_contents)
```
$postdata = http_build_query([]); // 参数
$options = array(
'http' => array(
'method' => 'POST',
'header' => 'Content-type:application/x-www-form-urlencoded',
'content' => $postdata,
'timeout' => 15 * 60 // 超时时间(单位:s)
)
);
$context = stream_context_create($options);
$result = file_get_contents("http://xxx.com/get_list", false, $context);
print_r($result);
```