我正在尝试使用 php 从 clickatell 短信提供商发送阿拉伯文本,但我所能发送的只是乱码文本。我用于测试的文本是“غثس هفس”。
我尝试使用 iconv 将消息文本编码为 Windows-1256,1250 和 ISO-8859-6 格式,但每次它只发送乱码文本。
谁能给我一些关于我所缺少的东西的指示?
提前致谢
我正在尝试使用 php 从 clickatell 短信提供商发送阿拉伯文本,但我所能发送的只是乱码文本。我用于测试的文本是“غثس هفس”。
我尝试使用 iconv 将消息文本编码为 Windows-1256,1250 和 ISO-8859-6 格式,但每次它只发送乱码文本。
谁能给我一些关于我所缺少的东西的指示?
提前致谢
好的,这是给以后走这条路的人的。在这里找到解决方案 Retaining code from Esailija's answer
<?php
$text = "غثس هفس خن";
$arr = unpack('H*hex', iconv('UTF-8', 'UCS-2BE', $text));
$message = strtoupper($arr['hex']);
$username = '';
$password = '';
$API_ID = '';
$to = '';
$url = "http://api.clickatell.com/http/auth?user=$username&password=$password&api_id=$API_ID";
$ret = file($url);
$sess = explode(":",$ret[0]);
if ($sess[0] == "OK") {
$sess_id = trim($sess[1]);
$url = "http://api.clickatell.com/http/sendmsg?session_id=$sess_id&to=$to&text=$message&unicode=1";
$ret = file($url);
$send = explode(":",$ret[0]);
if ($send[0] == "ID") {
echo "success - message ID: ". $send[1];
} else {
echo "send message failed";
}
} else {
echo "Authentication failure: ". $ret[0];
}
简短的回答:你需要做两件事:
a) 转换您的阿拉伯语信息:
$data = iconv("UTF-8", "UCS-2BE", $data); $data = bin2hex($data);
使用生成的字符串作为您的消息文本
b) 通过 HTTP API 发送时,包含 unicode 参数:
&unicode=1
基于此,默认为 GSM,但您也可以选择 UCS2。
所以:
<?php
//Make sure the PHP source file is physically
//saved in utf-8
$text = rawurlencode(iconv( "UTF-8", "UCS-2", "غثس هفس "));
$url = "http://api.clickatell.com/http/auth?user=username&password=password&api_id=API_ID&encoding=UCS2";
$ret = file($url);
$sess = explode(":",$ret[0]);
if ($sess[0] == "OK") {
$sess_id = trim($sess[1]);
$url = "http://api.clickatell.com/http/sendmsg?session_id=$sess_id&to=$to&text=$text&encoding=UCS2";
$ret = file($url);
$send = explode(":",$ret[0]);
if ($send[0] == "ID") {
echo "successnmessage ID: ". $send[1];
} else {
echo "send message failed";
}
} else {
echo "Authentication failure: ". $ret[0];
}
我为 Vtiger 6 重写了 ClickAtell 代码,以便它可以容纳 UTF-8 扩展字符。我用土耳其语。我使用下面的代码进行转换。我希望你能移植。
/**
* Function to handle UTF-8 Check and conversion
* @author Nuri Unver
*
*/
public function smstxtcode($data){
$mb_hex = '';
$utf = 0;
for($i = 0 ; $i<mb_strlen($data,'UTF-8') ; $i++){
$c = mb_substr($data,$i,1,'UTF-8');
$o = unpack('N',mb_convert_encoding($c,'UCS-4BE','UTF-8'));
$hx = sprintf('%04X',$o[1]);
$utf += intval(substr($hx,0,2));
$mb_hex .= $hx;
}
if ($utf>0)
{
$return=$mb_hex;
$utf=1;
}
else
{
$return=utf8_decode($data);
$utf=0;
}
return array($utf,$return);
}
你用你的消息调用这个函数。您得到的响应是一个数组,说明根据消息以及要发送的文本发送 unicode 文本还是普通文本。如果没有扩展字符,它只是将其作为 unicode=0 的纯文本发送以保存字符。如果消息包含扩展字符,它将消息转换为十六进制代码并将其作为 unicode 发送。
这段代码只是进行计算。您需要实现自己的代码以将其移植到您的系统。为了演示,这是我用于 Vtiger 提取数据并发送消息的代码:
/**
* Function to handle SMS Send operation
* @param <String> $message
* @param <Mixed> $toNumbers One or Array of numbers
*/
public function send($message, $toNumbers) {
if(!is_array($toNumbers)) {
$toNumbers = array($toNumbers);
}
$params = $this->prepareParameters();
$smsarray = $this->smstxtcode($message);
$params['text'] = $smsarray[1];
$params['unicode'] = $smsarray[0];
$params['to'] = implode(',', $toNumbers);
$serviceURL = $this->getServiceURL(self::SERVICE_SEND);