Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

xmlrpc_encode_request(3) [php man page]

XMLRPC_ENCODE_REQUEST(3)						 1						  XMLRPC_ENCODE_REQUEST(3)

xmlrpc_encode_request - Generates XML for a method request

SYNOPSIS
string xmlrpc_encode_request (string $method, mixed $params, [array $output_options]) DESCRIPTION
Warning This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a future release of PHP. This function should be used at your own risk. PARAMETERS
o $method - Name of the method to call. o $params - Method parameters compatible with method signature. o $output_options - Array specifying output options may contain (default values are emphasised): ooutput_type: php, xml overbosity: no_white_space, newlines_only, pretty oescaping: cdata, non-ascii, non-print, markup (may be a string with one value or an array with multiple values) oversion: simple, xmlrpc, soap 1.1, auto oencoding: iso-8859-1, other character set supported by iconv RETURN VALUES
Returns a string containing the XML representation of the request. EXAMPLES
Example #1 XMLRPC client functions example <?php $request = xmlrpc_encode_request("method", array(1, 2, 3)); $context = stream_context_create(array('http' => array( 'method' => "POST", 'header' => "Content-Type: text/xml", 'content' => $request ))); $file = file_get_contents("http://www.example.com/xmlrpc", false, $context); $response = xmlrpc_decode($file); if ($response && xmlrpc_is_fault($response)) { trigger_error("xmlrpc: $response[faultString] ($response[faultCode])"); } else { print_r($response); } ?> SEE ALSO
stream_context_create(3), file_get_contents(3), xmlrpc_decode(3). PHP Documentation Group XMLRPC_ENCODE_REQUEST(3)

Check Out this Related Man Page

STREAM_CONTEXT_GET_DEFAULT(3)						 1					     STREAM_CONTEXT_GET_DEFAULT(3)

stream_context_get_default - Retrieve the default stream context

SYNOPSIS
resource stream_context_get_default ([array $options]) DESCRIPTION
Returns the default stream context which is used whenever file operations (fopen(3), file_get_contents(3), etc...) are called without a context parameter. Options for the default context can optionally be specified with this function using the same syntax as stream_con- text_create(3). PARAMETERS
o $options -$options must be an associative array of associative arrays in the format $arr['wrapper']['option'] = $value. Note As of PHP 5.3.0, the stream_context_set_default(3) function can be used to set the default context. RETURN VALUES
A stream context resource. EXAMPLES
Example #1 Using stream_context_get_default(3) <?php $default_opts = array( 'http'=>array( 'method'=>"GET", 'header'=>"Accept-language: en " . "Cookie: foo=bar", 'proxy'=>"tcp://10.54.1.39:8000" ) ); $alternate_opts = array( 'http'=>array( 'method'=>"POST", 'header'=>"Content-type: application/x-www-form-urlencoded " . "Content-length: " . strlen("baz=bomb"), 'content'=>"baz=bomb" ) ); $default = stream_context_get_default($default_opts); $alternate = stream_context_create($alternate_opts); /* Sends a regular GET request to proxy server at 10.54.1.39 * For www.example.com using context options specified in $default_opts */ readfile('http://www.example.com'); /* Sends a POST request directly to www.example.com * Using context options specified in $alternate_opts */ readfile('http://www.example.com', false, $alternate); ?> SEE ALSO
stream_context_create(3), Listing of supported wrappers with context options ("Supported Protocols and Wrappers").. PHP Documentation Group STREAM_CONTEXT_GET_DEFAULT(3)
Man Page