WP_HTTP_Proxy::authentication() – Retrieve authentication string for proxy authentication.

You appear to be a bot. Output may be restricted

Description

Retrieve authentication string for proxy authentication.

Usage

$string = WP_HTTP_Proxy::authentication();

Parameters

Returns

string

Source

File name: wordpress/wp-includes/class-wp-http-proxy.php
Lines:

1 to 3 of 3
  public function authentication() {
    return $this->WP_HTTP_Proxy::username() . ':' . $this->WP_HTTP_Proxy::password();
  }
 

 View on GitHub View on Trac