williantg 0 Report post Posted July 19, 2004 Who knows how can I change String nto AnsiChar?? Share this post Link to post Share on other sites
OpaQue 15 Report post Posted July 19, 2004 The ORD function is used to return ASCII value of a character.. if this is what you want may be the function will be helpful<?php if (ord($str) == 10) { echo "The first character of \$str is a line feed.\n"; } ?> Share this post Link to post Share on other sites