summaryrefslogtreecommitdiff
path: root/vendor/thecodingmachine/safe/generated/xmlrpc.php
blob: 15364fb4ab3f66e84fcf66d00f0e193bb120611c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

namespace Safe;

use Safe\Exceptions\XmlrpcException;

/**
 * Sets xmlrpc type, base64 or datetime, for a PHP string value.
 *
 * @param string|\DateTime $value Value to set the type
 * @param string $type 'base64' or 'datetime'
 * @throws XmlrpcException
 *
 */
function xmlrpc_set_type(&$value, string $type): void
{
    error_clear_last();
    $result = \xmlrpc_set_type($value, $type);
    if ($result === false) {
        throw XmlrpcException::createFromPhpError();
    }
}