dongzang7182 2016-03-06 03:06
浏览 108
已采纳

使用PHP使用SPACE分隔符将十进制转换为ASCII

Using PHP, how do you convert a string of decimal numbers with spaces in between into a string without spaces? (unless of course it is a DEC space (32) converted)

Example: 84 104 97 110 107 32 121 111 117

I have checked out the related questions and most of them are just asking what the built in function is for converting decimal to ascii. I know chr() and ord() and I think the solution really should use explode() and implode() along with a string replace. I am just horrible at for and foreach loops so the logic breaks my mind. :)

The closest SO topic I found is this one which is basically the opposite of what I am asking for - Using PHP to Convert ASCII Character to Decimal Equivalent

  • 写回答

1条回答 默认 最新

  • doujiaozhan2413 2016-03-06 03:23
    关注

    This would be a situation where the strtok function actually could be used for something.

    The strtok function tokenizes a string based on a character. In this case the token delimiter is a space. Each time you call strtok it returns the next token in the string.

    The chr function is used to convert the ordinal (decimal) number to its ASCII character equivalent.

    function myParseString($str) {
        $output = ''; // What we will return
        $token = strtok($str, ' '); // Initialize the tokenizer
    
        // Loop until there are no more tokens left
        while ($token !== false) {
            $output .= chr($token); // Add the token to the output
            $token = strtok(' '); // Advance the tokenizer, getting the next token
        }
        // All the tokens have been consumed, return the result!
        return $output;
    }
    $str = '84 104 97 110 107 32 121 111 117';
    echo myParseString($str);
    

    (And you are welcome.)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 c语言,请帮蒟蒻写一个题的范例作参考
  • ¥15 名为“Product”的列已属于此 DataTable
  • ¥15 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题
  • ¥15 关于#c##的问题:最近需要用CAT工具Trados进行一些开发
  • ¥15 南大pa1 小游戏没有界面,并且报了如下错误,尝试过换显卡驱动,但是好像不行
  • ¥15 没有证书,nginx怎么反向代理到只能接受https的公网网站
  • ¥50 成都蓉城足球俱乐部小程序抢票
  • ¥15 yolov7训练自己的数据集
  • ¥15 esp8266与51单片机连接问题(标签-单片机|关键词-串口)(相关搜索:51单片机|单片机|测试代码)