WMPRO, WMMINI FW >= 1.0 WMMEGA FW >= 2.0
Return the ASCII code for a character in a string at an index
$str: String to get character from
$index: Index into string (the first character in the string is index = 0)
Integer ASCII code (0-255)
<? $str="Test String"; $ascii=charat($str,5); print($ascii); // result is 83 ?>