function xmlrpc_errno
Same name and namespace in other branches
- 7.x drupal-7.x/includes/xmlrpc.inc \xmlrpc_errno()
Returns the last XML-RPC client error number
Archivo
- drupal-6.x/
includes/ xmlrpc.inc, line 466 - Drupal XML-RPC library. Based on the IXR - The Incutio XML-RPC Library - (c) Incutio Ltd 2002-2005 Version 1.7 (beta) - Simon Willison, 23rd May 2005 Site: http://scripts.incutio.com/xmlrpc/ Manual: http://scripts.incutio.com/xmlrpc/manual.php This…
Código
function xmlrpc_errno() {
$error = xmlrpc_error();
return ($error != NULL ? $error->code : NULL);
}