Requests_Session::get( $url, $headers = array(), $options = array() )
Send a GET request
Description Description
Source Source
File: wp-includes/Requests/Session.php
public function get($url, $headers = array(), $options = array()) { return $this->request($url, $headers, null, Requests::GET, $options); }
Expand full source code Collapse full source code View on Trac