Same name and namespace in other branches
  1. 4.6.x includes/xmlrpc.inc \xmlrpc_errno()
  2. 4.7.x includes/xmlrpc.inc \xmlrpc_errno()
  3. 5.x includes/xmlrpc.inc \xmlrpc_errno()
  4. 6.x includes/xmlrpc.inc \xmlrpc_errno()

Returns the last XML-RPC client error number.

File

includes/xmlrpc.inc, line 638
Drupal XML-RPC library.

Code

function xmlrpc_errno() {
  $error = xmlrpc_error();
  return $error != NULL ? $error->code : NULL;
}