OAuth::disableDebug

(PECL OAuth >= 0.99.3) Turn off verbose debugging public bool OAuth::disableDebug ( void ) Turns off verbose request information (off by default). Alternatively, the debug property can be set to a FALSE value to turn debug off. Returns: TRUE Changelog: 0.99.8 The related debug property was added.

OAuth::__destruct

(PECL OAuth >= 0.99.9) The destructor public void OAuth::__destruct ( void ) The destructor. Returns: No value is returned. This function is currently not documented; only its argument list is available. See also: OAuth::__construct() -

OAuth::__construct

(PECL OAuth >= 0.99.1) Create a new OAuth object public OAuth::__construct ( string $consumer_key, string $consumer_secret [, string $signature_method = OAUTH_SIG_METHOD_HMACSHA1 [, int $auth_type = 0 ]] ) Creates a new OAuth object Parameters: consumer_key The consumer key provided by the service provider. consumer_secret The cons

oauth_urlencode

(PECL OAuth >=0.99.2) Encode a URI to RFC 3986 string oauth_urlencode ( string $uri ) Encodes a URI to » RFC 3986. Parameters: uri URI to encode. Returns: Returns an » RFC 3986 encoded string.

oauth_get_sbs

(PECL OAuth >=0.99.7) Generate a Signature Base String string oauth_get_sbs ( string $http_method, string $uri [, array $request_parameters ] ) Generates a Signature Base String according to pecl/oauth. Parameters: http_method The HTTP method. uri URI to encode. request_parameters Array of request

var_export

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Outputs or returns a parsable string representation of a variable mixed var_export ( mixed $expression [, bool $return = false ] ) var_export() gets structured information about the given variable. It is similar to var_dump() with one exception: the returned representation is valid PHP code. Parameters: expression The variable you want t

var_dump

(PHP 4, PHP 5, PHP 7) Dumps information about a variable void var_dump ( mixed $expression [, mixed $... ] ) This function displays structured information about one or more expressions that includes its type and value. Arrays and objects are explored recursively with values indented to show structure. All public, private and protected properties of objects will be returned in the output unless the object implements a __de

unset

(PHP 4, PHP 5, PHP 7) Unset a given variable void unset ( mixed $var [, mixed $... ] ) unset() destroys the specified variables. The behavior of unset() inside of a function can vary depending on what type of variable you are attempting to destroy. If a globalized variable is unset() inside of a function, only the local variable is destroyed. The variable in the calling environment will retain the same value as before u

unserialize

(PHP 4, PHP 5, PHP 7) Creates a PHP value from a stored representation mixed unserialize ( string $str [, array $options ] ) unserialize() takes a single serialized variable and converts it back into a PHP value. Parameters: str The serialized string. If the variable being unserialized is an object, after successfully reconstructing the object PHP will automatically a

strval

(PHP 4, PHP 5, PHP 7) Get string value of a variable string strval ( mixed $var ) Get the string value of a variable. See the documentation on string for more information on converting to string. This function performs no formatting on the returned value. If you are looking for a way to format a numeric value as a string, please see sprintf() or number_format(). Parameters: var