手记

php的file_get_contents用法

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;
   }

0人推荐
随时随地看视频
慕课网APP