XmlRPC examle Revision 653264393230 (Fri Feb 10 2012 at 16:20) - Diff Link to this snippet: https://friendpaste.com/1ZFJVc3fSKZu8SJ4nBYPnq Embed: manni perldoc borland colorful default murphy trac fruity autumn bw emacs pastie friendly Show line numbers Wrap lines 1234567891011121314<?php $host = 'myhost.com';$path = '/somepath'//Init it$rpc = new XmlRPC($host,$path);//Call it using the call method$output1 = $rpc->call('method',$arg1,$arg2);//Call it using the __call php magic method$output2 = $rpc->method($arg1,$arg2);//$output1 == $output2