Pyh.conf’25: a new PHP conference for the Russian-speaking community

Voting

: min(four, four)?
(Example: nine)

The Note You're Voting On

ryon dot sherman at gmail dot com
15 years ago
64 bit (i8) integers are not parsed by xmlrpc_decode().
Use a string replacement to work around this:

<?php

$xml
= str_replace('i8>', 'i4>', $xml);

$decoded_xml = xmlrpc_decode($xml);

?>

<< Back to user notes page

To Top