将javascript代码转换为PHP charCodeAt()问题

时间:2012-06-18 15:50:39

标签: php javascript

我在PHP中有一个javascript函数,这是我的JavaScript函数:

<script type="text/javascript">
                    str = '242357de5b105346ea2059795682443';
                    str_overral = str;
                    str_overral = str_overral.replace(/[^a-z0-9]/gi, '').toLowerCase();
                    str_res='';
                    for (i=0; i<str_overral.length; i++) {
                        l=str_overral.substr(i,1);
                        d=l.charCodeAt(0);
                        if ( Math.floor(d/2) == d/2 ) {
                            str_res+=l;
                        } else {
                            str_res=l+str_res;
                        }
                    }
                    document.write('<in');
                    document.write('put type="hidden" name="myInput" value="'+str_res+'" />');
                </script>

以上JavaScript函数为myInput生成此字符串:359795ae3515e753242db0462068244

我尝试使用PHP:

    $str = '242357de5b105346ea2059795682443';
    $str_overral = preg_replace('/[^a-z0-9]/i', '',$str);
    $str_overral = strtolower($str_overral);
    $str_res=''; 
    for ($i=0; $i<strlen($str_overral); $i++) {
        $l= substr($str_overral,$i,1);
        // PHP does not have charCodeAt() function so i used uniord()
        $d = uniord($l);
        if((floor($d)/2) == ($d/2))
            $str_res.=$l;
        else
            $str_res.= $l.$str_res;
    }
    echo $str_res;

function uniord($c) {
        $h = ord($c{0});
        if ($h <= 0x7F) {
            return $h;
        } else if ($h < 0xC2) {
            return false;
        } else if ($h <= 0xDF) {
            return ($h & 0x1F) << 6 | (ord($c{1}) & 0x3F);
        } else if ($h <= 0xEF) {
            return ($h & 0x0F) << 12 | (ord($c{1}) & 0x3F) << 6
                                     | (ord($c{2}) & 0x3F);
        } else if ($h <= 0xF4) {
            return ($h & 0x0F) << 18 | (ord($c{1}) & 0x3F) << 12
                                     | (ord($c{2}) & 0x3F) << 6
                                     | (ord($c{3}) & 0x3F);
        } else {
            return false;
        }
    }   

以上PHP代码生成此字符串:242357de5b105346ea2059795682443 所以基本上PHP只是返回$ string。

由于PHP没有charCodeAt()函数,我在这里找到了一个解决方案UTF-8 Safe Equivelant of ord or charCodeAt() in PHP,但这对我不起作用,我甚至尝试了'hakre'在同一个帖子中发布的解决方案。

感谢您提供任何帮助。

更新解决方案:

以下是修复:

if($d%2 == 0)
    $str_res.=$l;
else
    $str_res = $l.$str_res;

1 个答案:

答案 0 :(得分:2)

if((floor($d)/2) == ($d/2))

你的)位置错误。它应该在第一个/2之后,而不是在它之前。

使用if($d%2 == 0)

可以提高效率