在 PHP 中解码 PDU 编码的短信

发布于 2024-10-06 09:59:21 字数 149 浏览 6 评论 0原文

我已经在网上搜索了很长一段时间 - 但没有任何可用的信息通过我的方式:(

你知道使用 PHP 解码 PDU 编码 SMS 的类/库吗?
使用官方文档手动进行所有解码让我有点害怕。
似乎有一些库可以在 Java (Android) 中使用,但这没有帮助。

I've searched the web for quite a while now - but nothing usable passed my way :(

Do you know a class/library to decode PDU encoded SMS using PHP?
Doing all the decode by hand using the official documentation scares me a bit.
There seem to be libraries for use in Java (Android) but that does not help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

只涨不跌 2024-10-13 09:59:21

这是一个基于javaScript的GUI。将您的 pdu 消息粘贴到单击转换按钮的中间框中。

Here is a javaScript based GUI. paste your pdu message in middle box in click convert button.

流绪微梦 2024-10-13 09:59:21

我的 PHP 解决方案基于 python 答案

<?php
/**
 * Decode 7-bit packed PDU messages
 */
if ( !function_exists( 'hex2bin' ) ) {
    // pre 5.4 fallback
    function hex2bin( $str ) {
        $sbin = "";
        $len = strlen( $str );
        for ( $i = 0; $i < $len; $i += 2 ) {
            $sbin .= pack( "H*", substr( $str, $i, 2 ) );
        }

        return $sbin;
    }
}

function pdu2str($pdu) {
    // chop and store bytes
    $number = 0;
    $bitcount = 0;
    $output = '';
    while (strlen($pdu)>1) {
        $byte = ord(hex2bin(substr($pdu,0,2)));
        $pdu=substr($pdu, 2);
        $number += ($byte << $bitcount);
        $bitcount++ ;
        $output .= chr($number & 0x7F);
        $number >>= 7;
        if (7 == $bitcount) {
            // save extra char
            $output .= chr($number);
            $bitcount = $number = 0;
        }
    }
    return $output;
}

?>

My solution in PHP based on python answer:

<?php
/**
 * Decode 7-bit packed PDU messages
 */
if ( !function_exists( 'hex2bin' ) ) {
    // pre 5.4 fallback
    function hex2bin( $str ) {
        $sbin = "";
        $len = strlen( $str );
        for ( $i = 0; $i < $len; $i += 2 ) {
            $sbin .= pack( "H*", substr( $str, $i, 2 ) );
        }

        return $sbin;
    }
}

function pdu2str($pdu) {
    // chop and store bytes
    $number = 0;
    $bitcount = 0;
    $output = '';
    while (strlen($pdu)>1) {
        $byte = ord(hex2bin(substr($pdu,0,2)));
        $pdu=substr($pdu, 2);
        $number += ($byte << $bitcount);
        $bitcount++ ;
        $output .= chr($number & 0x7F);
        $number >>= 7;
        if (7 == $bitcount) {
            // save extra char
            $output .= chr($number);
            $bitcount = $number = 0;
        }
    }
    return $output;
}

?>
我只土不豪 2024-10-13 09:59:21
function DecodePDU($sString = '')
{
    $sString = pack("H*",$sString);
    $sString = mb_convert_encoding($sString,'UTF-8','UCS-2');

    return $sString;
}
function DecodePDU($sString = '')
{
    $sString = pack("H*",$sString);
    $sString = mb_convert_encoding($sString,'UTF-8','UCS-2');

    return $sString;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文