Decode PDU encoded SMS in PHP

自作多情 提交于 2019-12-13 03:39:25

问题


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.


回答1:


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




回答2:


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:


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

    return $sString;
}


来源:https://stackoverflow.com/questions/4367221/decode-pdu-encoded-sms-in-php

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!