function xmlrpc_errno
Same name and namespace in other branches
- 6.x drupal-6.x/includes/xmlrpc.inc \xmlrpc_errno()
Returns the last XML-RPC client error number.
Archivo
- drupal-7.x/
includes/ xmlrpc.inc, line 604 - Drupal XML-RPC library.
Código
function xmlrpc_errno() {
$error = xmlrpc_error();
return ($error != NULL ? $error->code : NULL);
}