Requests_Session::get()

最后更新于:2021-11-26 04:03:51

Requests_Session::get($url, $headers=array(), $options=array())

Send a GET request

源文件

文件: gc-includes/Requests/Session.php

	public function get($url, $headers = array(), $options = array()) {
		return $this->request($url, $headers, null, Requests::GET, $options);
	}