我的简单PHP代码有什么问题?

时间:2014-03-08 04:51:01

标签: php

<?php
function hash($val, $key){
    $chrs = explode($val, "");
    for($c=0; $c<count($chrs); $c++){
          $ascii[$c]=ord($chrs[$c]);
    }
    $digi = explode($key,"");
    for($c=0; $c<count($digi); $c++){
        $nascii[$c]= $ascii[$c]+$digi[$c];
        $fhash[$c] = $nascii[$c];
    }
}
?>
  

错误:致命错误:无法重新声明hash()   第12行/Applications/XAMPP/xamppfiles/htdocs/hash.php

1 个答案:

答案 0 :(得分:3)

hash() 已经是PHP内置函数。将你的功能命名为其他东西。