1
什麼是PHP當量以下的C#代碼什麼是PHP等效Encoding.ASCII.GetBytes(vstrEncryptionKey.ToCharArray())
Encoding.ASCII.GetBytes(vstrEncryptionKey.ToCharArray())
其中vstrEncryptionKey
是變量?
什麼是PHP當量以下的C#代碼什麼是PHP等效Encoding.ASCII.GetBytes(vstrEncryptionKey.ToCharArray())
Encoding.ASCII.GetBytes(vstrEncryptionKey.ToCharArray())
其中vstrEncryptionKey
是變量?
使用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]);
}
?>
給出的答案修改後的代碼