请求数据
/* * * */ public function getmingRenProLst($url){ $opts = array('http' => array('method' => 'GET', 'header' => 'Content-type: application/json', 'request_fulluri' => true)); $context = stream_context_create($opts); $data = file_get_contents($url, false, $context); return $data; }