function xmlrpc_errno

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);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/includes!xmlrpc.inc/function/xmlrpc_errno/7.x