PHP 8.5.0 Alpha 4 available for testing

Voting

: seven minus four?
(Example: nine)

The Note You're Voting On

hfuecks at pinkgoblin dot com
22 years ago
Use this with an XML-RPC client to decode a server response into native PHP variables. It will automatically translate the response XML-RPC data types into their PHP equivalents.

This function will return only false is there is any problem with format of the XML it receives.

The HTTP response header will need to be stripped off with something like;

<?php
$xml
=(substr($response, strpos($response, "\r\n\r\n")+4));

$phpvars = xmlrpc_decode ($xml);
?>

<< Back to user notes page

To Top