我用 PHP 编写了一个 SMPP 服务器收发器。我从我的 SMPP 中得到这个 SMS 字符串。这是一条 UTF8 消息,实际上是 7Bit。这是一条示例消息:
5d30205d30205d3
我知道如何转换它。它应该是:
\x5d3\x020\x5d3\x020\x5d3
I don't want to write it myself. I guess there is already a function that does that for me. Some hidden iconv or using pack() / unpack() to convert this string to the correct format.
我正在尝试使用 PHP 来实现这一点。有任何想法吗?
谢谢。