Php/docs/function.xmlrpc-get-type

From Get docs

xmlrpc_get_type

(PHP 4 >= 4.1.0, PHP 5, PHP 7)

xmlrpc_get_typeGets xmlrpc type for a PHP value


Description

xmlrpc_get_type ( mixed $value ) : string

Warning This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a future release of PHP. This function should be used at your own risk.


This function is especially useful for base64 and datetime strings.


Parameters

value
PHP value


Return Values

Returns the XML-RPC type.


Examples

Example #1 XML-RPC type example

<?phpecho xmlrpc_get_type(null) . "\n"; // base64echo xmlrpc_get_type(false) . "\n"; // booleanecho xmlrpc_get_type(1) . "\n"; // intecho xmlrpc_get_type(1.0) . "\n"; // doubleecho xmlrpc_get_type("") . "\n"; // stringecho xmlrpc_get_type(array()) . "\n"; // arrayecho xmlrpc_get_type(new stdClass) . "\n"; // arrayecho xmlrpc_get_type(STDIN) . "\n"; // int?>

See Also