Compzone.Org :: Podręcznik PHP :: ord
Pytania w drugiej edycji Testu PHP powinny być:
Trudniejsze
Łatwiejsze
Skomplikowane
Na myślenie
Do liczenia
Sonda Wyniki

Add to Google

ord

(PHP 3, PHP 4, PHP 5)

ord -- Return ASCII value of character

Description

int ord ( string string )

Returns the ASCII value of the first character of string. This function complements chr().

Przykład 1. ord() example

<?php
$str 
"\n";
if (
ord($str) == 10) {
    echo 
"The first character of \$str is a line feed.\n";
}
?>

You can find an ASCII-table over here: http://www.asciitable.com.

See also chr().

Copyright © 2005-2006 Compzone.Org. Kopiowanie i wykorzystywanie materiałów zawartych na tej stronie bez zgody autora zabronione!