xmlrpc_set_type

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

xmlrpc_set_typeΪһ�� PHP �ַ���ֵ���� xmlrpc �����͡�base64 ������ʱ��

˵��

xmlrpc_set_type ( string &$value , string $type ) : bool

Ϊһ�� PHP �ַ���ֵ���� xmlrpc �����͡�base64 ������ʱ��

Warning

�˺�����ʵ�����ġ��˺����ı��󣬰������Ƽ�������ĵ���������δ���� PHP �����汾��δ֪ͨ�ͱ��޸ġ�ʹ�ñ����������Ե� ��

����

value

Value to set the type

type

'base64' or 'datetime'

����ֵ

�ɹ�ʱ���� TRUE�� ������ʧ��ʱ���� FALSE�� If successful, value is converted to an object.

����

Example #1 A xmlrpc_set_type() example

<?php

$params 
date("Ymd\TH:i:s"time());
xmlrpc_set_type($params'datetime');
echo 
xmlrpc_encode($params);

?>

�������̵���������ڣ�

<?xml version="1.0" encoding="utf-8"?>
<params>
<param>
 <value>
  <dateTime.iso8601>20090322T23:43:03</dateTime.iso8601>
 </value>
</param>
</params>

�����쳣

Issues E_WARNING with type unsupported by XMLRPC.