问题标签 [bin2hex]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
javascript - hashid 加密在 PHP 中不返回任何值
试图加密文本:- "Michael Fehr" 或 "carpet" 使用hashids,它返回空白。
代码:-
也尝试过:- $hashed_interestrate = $hashids->encode_hex("63706b64");
,但不工作。如果我尝试文字:-“CPC”,它正在工作。
haskell - 在 Haskell 中将十六进制转换为 bin
我想将十六进制转换为 bin haskell,这就是我所做的,但它似乎是错误的。有人可以帮忙吗?
php - 在 php 中替代 linux 中的 xxd 命令
我需要以与 Linux 程序相同的方式将 bin 文件转换为 PHP 中的字符串。
在linux中:xxd -g 1 data.bin
并输出:0000000: 02 50 45 10 02 06 54 62 43 20 05 20 11 07 21 12 .PE...TbC . ..!.
在 PHP 中,我尝试使用该bin2hex
函数,但我只得到数字02 50 45 10 02 06 54 62 43 20 05 20 11 07 21 12
。我还需要一个偏移量和文本表示。
偏移量是我在上面输入的字符串中的行号、第一个数字和一个冒号 ( 0000000:
)。这实际上不是问题,因为我可以编写代码来计算它,但更大的问题是文本表示(.PE...TbC . ..!.
)。
有人可以帮忙吗?我可以为此使用哪些功能?