php-src/ext/standard/tests/strings/chr_ord.phpt

11 lines
191 B
Plaintext
Raw Normal View History

2002-10-06 19:12:22 +00:00
--TEST--
chr() and ord() functions
--FILE--
<?php
echo "Testing ord() & chr()...";
for($i=0; $i<256; $i++) echo !ord(chr($i)) == $i;
echo " done";
?>
--EXPECT--
Testing ord() & chr()... done