douzhuo1853 2017-01-04 05:42
浏览 864
已采纳

将Java方法Base64.encodeToString()转换为PHP

Hello I have the below java code:

Base64.encodeToString(("users name").getBytes(), 2);

And I'm trying to convert it to php:

bytesEnc("users name");

function bytesEnc($string) {
    $bytes = array();
    for($i = 0; $i < strlen($string); $i++){
        $bytes[] = ord($string[$i]);
    }
    return $bytes;
}

I converted getBytes() but I don't know what to do next. I know function base64_encode exists inn PHP but the second argument of encodetoString java method with value 2 bothers me. Please, help.

  • 写回答

1条回答 默认 最新

  • dongshou2017 2017-01-04 06:08
    关注

    According to the docs the second parameter is a bitwise flag.

    If the value is 2, then the flag NO_WRAP is used:

    Encoder flag bit to omit all line terminators (i.e., the output will be on one long line).

    This means its removes the new lines.

    function bytesEnc($string){
      $string = str_replace(PHP_EOL, '', $string);
    
      $bytes = array();
      for($i = 0; $i < strlen($string) - 1; $i++){
        $bytes[] = ord($string[$i]);
      }
      return $bytes;
    }
    
    echo base64_encode(implode('',bytesEnc('users name')));
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记