Requests_Auth_Basic::__construct() WordPress Method
The Requests_Auth_Basic class is used to connect to a server using basic HTTP authentication. The class takes a username and password as parameters, and uses these to connect to the server.
Requests_Auth_Basic::__construct( array|null $args = null ) #
Constructor
Parameters
- $args
(array|null)(Optional)Array of user and password. Must have exactly two elements
Default value: null
Source
File: wp-includes/Requests/Auth/Basic.php
public function __construct($args = null) {
if (is_array($args)) {
if (count($args) !== 2) {
throw new Requests_Exception('Invalid number of arguments', 'authbasicbadargs');
}
list($this->user, $this->pass) = $args;
}
}
Expand full source codeCollapse full source codeView on TracView on GitHub