8fe9b866f2
+YUCHENG HU+ git-svn-id: https://svn.code.sf.net/p/hawebs/svn@353 a2543c7e-f6e9-4f8a-8bff-1ffc34733512
13 lines
234 B
PHP
13 lines
234 B
PHP
<?php
|
|
function strToIntArray($string){
|
|
$arr = array();
|
|
for($i=0, $n=strlen($string);$i<$n;$i++){
|
|
$arr[]= ord(substr($string, $i, 1));
|
|
}
|
|
return $arr;
|
|
}
|
|
|
|
function charAt($str, $i){
|
|
return ord(substr($str, $i, 1));
|
|
}
|
|
?>
|