function wp_file_get_contents($url) { $context = stream_context_create(array( 'http' => array( 'timeout' => 30 ) )); // 超时时间,单位为秒 return file_get_contents($url, 0, $context); }
防超时的file_get_contents改造函数
最新推荐文章于 2021-03-27 04:26:28 发布
function wp_file_get_contents($url) { $context = stream_context_create(array( 'http' => array( 'timeout' => 30 ) )); // 超时时间,单位为秒 return file_get_contents($url, 0, $context); }