function xmlrpc_errno
7.x xmlrpc.inc | xmlrpc_errno() |
6.x xmlrpc.inc | xmlrpc_errno() |
Returns the last XML-RPC client error number.
File
- drupal-7.x/
includes/ xmlrpc.inc, line 604 - Drupal XML-RPC library.
Code
function xmlrpc_errno() {
$error = xmlrpc_error();
return ($error != NULL ? $error->code : NULL);
}