php代码中如何将ASCII码转成数值,下面web建站小编给大家简单介绍一下具体实现方法!
将ASCII码转成数值
function ascii_to_number($string) { $length = strlen($string); $x = 0; for ($i = 0; $i < $length; $i++) { $x = ($x * 128) + ord($string{$i}); } return $x; } $string = "Hello World!"; $number = ascii_to_number($string); echo "The ASCII number of '{$string}' is: {$number}";
上面是“php如何将ASCII码转成数值”的全面内容,想了解更多关于 php入门 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_3922.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!