php hex2bin_PHP bin2hex()函数与示例

php hex2bin

PHP bin2hex()函数 (PHP bin2hex() function)

bin2hex() function is a string function, it is used to convert a given string of ASCII characters to the hexadecimal values.

bin2hex()函数是一个字符串函数,用于将给定的ASCII字符字符串转换为十六进制值。

It accepts string and returns the hexadecimal converted string.

它接受字符串并返回十六进制转换后的字符串。

Syntax:

句法:

    bin2hex(string);

Examples:

例子:

    Input:
    str = Hello world
    Output:
    hex_str = 48656c6c6f20776f726c64

    Input:
    str = ABC 123 @#$%. XYZ
    Output:
    hex_str = 4142432031323320402324252e2058595a

PHP code:

PHP代码:

<?php
    $str = "Hello world";
    $hex_str = bin2hex($str);
    
    //printing both strings
    echo ("str = " . $str . "\n");
    echo ("hex_str = " . $hex_str . "\n");
    
    $str = "ABC 123 @#$%. XYZ";
    $hex_str = bin2hex($str);
    
    //printing both strings
    echo ("str = " . $str . "\n");
    echo ("hex_str = " . $hex_str . "\n");    
?>

Output

输出量

str = Hello world
hex_str = 48656c6c6f20776f726c64
str = ABC 123 @#$%. XYZ
hex_str = 4142432031323320402324252e2058595a


翻译自: https://www.includehelp.com/php/bin2hex-function-with-example.aspx

php hex2bin

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值