0

我正在使用 XMLRPC 客户端调用 Adestra API 服务。目前我在插入波斯尼亚字母 č、ć、ž、đ、š 时遇到问题。

我将我的 XMLRPC 客户端配置为使用 UTF-8,但仍然有问题。这是我的代码示例:

//******* LOGIN DATA*******/
$account = 'account';
$username = 'username';
$password = 'password';
$adestraCoreTable=1;


/**INITIALIZE API*****/
require_once('xmlrpc.inc');//First inlcude XMLRPC client library


//Calling Adestra API with our credentials
$xmlrpc= new xmlrpc_client("http://$account.$username:$password@new.adestra.com/api/xmlrpc");
$xmlrpc->setDebug(0);
$xmlrpc->request_charset_encoding="UTF-8";


$msg = new xmlrpcmsg(
                    "contact.search",
                    array(
                        //Set user id
                        new xmlrpcval($adestraCoreTable, "int"),
                        new xmlrpcval(
                            array(
                                "firstName"=> new xmlrpcval("Čokolada", "string"),
                            ),"struct"
                        )
                    )

                );
$response = $xmlrpc->send($msg);//Send request, and get the response

其余的代码是解析 $response ,这不是我们这里的主要兴趣。

如您所见,firstName设置为Čokolada,但是当我在 Adestra 中检查它时,我得到了值Äokolada。显然,编码存在问题。

任何人都可以帮忙吗?

4

1 回答 1

5

在 xmlrpc.inc 中替换这个

$GLOBALS['xmlrpc_internalencoding']='ISO-8859-1';

有了这个

$GLOBALS['xmlrpc_internalencoding']='UTF-8';
于 2014-09-04T18:39:14.303 回答