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