以下C#代码的等效PHP是什么
Encoding.ASCII.GetBytes(vstrEncryptionKey.ToCharArray())
其中vstrEncryptionKey
是变量吗?
答案 0 :(得分:0)
使用ord
功能(http://php.net/ord)和mb_strlen
功能http://php.net/manual/en/function.mb-strlen.php)
<?php
$var = $vstrEncryptionKey;
for($i = 0; $i < mb_strlen($var, 'ASCII'); $i++)
{
echo ord($var[$i]);
}
?>
中给出的答案的修改代码