[ Index ]

PHP Cross Reference of vtigercrm-6.1.0

title

Body

[close]

/libraries/antlr/ -> util.php (source)

   1  <?php
   2  	function strToIntArray($string){
   3          $arr = array();
   4          for($i=0, $n=strlen($string);$i<$n;$i++){
   5              $arr[]= ord(substr($string, $i, 1));
   6          }
   7          return $arr;
   8      }
   9      
  10  	function charAt($str, $i){
  11          return ord(substr($str, $i, 1));
  12      }
  13  ?>


Generated: Fri Nov 28 20:08:37 2014 Cross-referenced by PHPXref 0.7.1