Voting

: max(two, seven)?
(Example: nine)

The Note You're Voting On

giunta dot gaetano at sea-aeroportimilano dot it
18 years ago
To have an xmlrpc fault response programatically generated by the server, the php function registered as method handler must return an array containing a FaultCode and a FaultString members.

function $myfunc($methodname, $vals, $extra_data)
{
...
return array('faultCode' => 666, 'faultString' => 'DOH!');
}

<< Back to user notes page

To Top