PHP:xml-rpc和土耳其语字符

时间:2012-03-17 06:43:26

标签: xml-rpc

我想通过xml-rpc发布到我的wordpress网站。

我对土耳其人的问题有两个问题。

1 - 当我在标题中使用其中一个人物(Çç,Ğğ,Iı,Öö,Şş,Üü)时,会向没有标题的wordpress发送帖子。?

2 - 当我在身体内容中使用相同的字符时,它会以不同的形式发送。

例如在身体内容中,我有“Ankaralıyım”,dit转到wordpress为“Ankaralýyým”。

这是我使用的代码

 <?php
$title="Karaçay";
$body="Ankaralıyım";

$rpcurl="http://localhost/wp/xmlrpc.php";
$username="admin";
$password="pass";
$categories="try";

echo wpPostXMLRPC($title,$body,$rpcurl,$username,$password,$categories,'');

function wpPostXMLRPC($title,$body,$rpcurl,$username,$password,$category,$keywords='',$encoding='UTF-8') 
{
    $title = htmlentities($title,ENT_NOQUOTES,$encoding);
    $keywords = htmlentities($keywords,ENT_NOQUOTES,$encoding);

    $content = array(
        'title'=>$title,
        'description'=>$body,
        'mt_allow_comments'=>0,  // 1 to allow comments
        'mt_allow_pings'=>0,  // 1 to allow trackbacks
        'post_type'=>'post',
        'mt_keywords'=>$keywords,
        'categories'=>array($category)
    );
    $params = array(0,$username,$password,$content,true);
    $request = xmlrpc_encode_request('metaWeblog.newPost',$params, array('encoding'=>'UTF-8'));
    $ch = curl_init();

    curl_setopt($ch, CURLOPT_POSTFIELDS, $request);
    curl_setopt($ch, CURLOPT_URL, $rpcurl);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_TIMEOUT, 1);
    $results = curl_exec($ch);
    curl_close($ch);
    return $results;
}

?>

当我从wordpress添加帖子时,我没有任何语言问题。

我将如何解决这个问题?

我用不同的代码尝试了同样的事情,这次如果标题或帖子中有任何土耳其字符我得到了这个结果 创建新的post-32700时出错:解析错误。形象不佳 第二个代码是

<?php
        require("class-IXR.php");  
        $client = new IXR_Client('http://localhost/wp/xmlrpc.php');

        $USER = 'admin';
        $PASS = 'pass';

        $content['title'] = 'Test title '.mt_rand();
        $content['categories'] = array("NewCategory","Nothing");
        $content['description'] = '<p>Lorem ırmak ipsum dolor sit amet</p>';
        $content['custom_fields'] = array( array('key' => 'my_custom_fied','value'=>'yes') );
        $content['mt_keywords'] = array('foo','bar');

        if (!$client->query('metaWeblog.newPost','', $USER,$PASS, $content, true))
        {
            die( 'Error while creating a new post' . $client->getErrorCode() ." : ". $client->getErrorMessage());  
        }
        $ID =  $client->getResponse();

        if($ID)
        {
            echo 'Post published with ID:#'.$ID;
        }

?>

这是通过xml-rpc将帖子发送到wordpress的两种不同方式。但不同于英语的字符不起作用。我所知道的是xml-rpc支持utf-8。

2 个答案:

答案 0 :(得分:0)

确定看起来管道的某些部分并不理解或尊重您想要使用UTF-8数据。

您是否尝试通过tcpdumpnetcatwireshark等工具检查发送到服务器的原始数据

您还可以尝试使用选项CURLOPT_VERBOSECURLOPT_HEADER启用curl调试:

curl_setopt($ch,CURLOPT_VERBOSE,1)
curl_setopt($ch,CURLOPT_HEADER,1)

答案 1 :(得分:0)

您应该将escaping->markup参数添加到xmlrpc_encode_request

xmlrpc_encode_request('blogger.newPost',$params,
                            array('encoding'=>'UTF-8','escaping'=>'markup'));