PHP
XML

xmlrpc_get_type

xmlrpc_get_type

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

xmlrpc_get_type - 获取PHP值的xmlrpc类型

描述

string xmlrpc_get_type ( mixed $value )

警告

这个功能是实验性的。在将来的PHP版本中,此函数,其名称和周围文档的行为可能会在未经通知的情况下发生变化。应该在风险自负情况下使用此功能,。

这个函数对于base64和datetime字符串特别有用。

参数

value

PHP值

返回值

返回XML-RPC类型。

例子

示例#1 XML-RPC类型示例

<?php echo xmlrpc_get_type(null) . "\n"; // base64 echo xmlrpc_get_type(false) . "\n"; // boolean echo xmlrpc_get_type(1) . "\n"; // int echo xmlrpc_get_type(1.0) . "\n"; // double echo xmlrpc_get_type("") . "\n"; // string echo xmlrpc_get_type(array()) . "\n"; // array echo xmlrpc_get_type(new stdClass) . "\n"; // array echo xmlrpc_get_type(STDIN) . "\n"; // int ?>

扩展内容

  • xmlrpc_set_type() - 为PHP字符串值设置xmlrpc类型base64或datetime

← xmlrpc_encode

xmlrpc_is_fault →