PHP/String/ord — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 07:07, 26 мая 2010
int ord ( string str ) returns the equivalent ASCII value
<?
$mystr = "ASCII\n";
if (ord($mystr{1}) == 83) {
print "The second letter in the string is S\n";
} else {
print "The second letter is not S\n";
}
?>