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

Send a GET request

Source

public static function get($url, $headers = [], $options = []) {
	return self::request($url, $headers, null, self::GET, $options);
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.