Decode PDU encoded SMS in PHP

2019-08-28 01:14发布

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.

标签: php sms pdu
3条回答
smile是对你的礼貌
2楼-- · 2019-08-28 01:46

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;
}

?>
查看更多
劫难
3楼-- · 2019-08-28 01:55

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

查看更多
Luminary・发光体
4楼-- · 2019-08-28 02:02
function DecodePDU($sString = '')
{
    $sString = pack("H*",$sString);
    $sString = mb_convert_encoding($sString,'UTF-8','UCS-2');

    return $sString;
}
查看更多
登录 后发表回答