xmlrpc_errno
- Versions
- 4.6 – 7
xmlrpc_errno()
Returns the last XML-RPC client error number
Code
includes/xmlrpc.inc, line 468
<?php
function xmlrpc_errno() {
$error = xmlrpc_error();
return ($error != NULL ? $error->code : NULL);
}
?>Login or register to post comments 