#!/usr/bin/php * @file description: Prints the list of printable ASCII characters * */ define( 'VERSION', 0.1 ); define( 'PRINTABLES_START', ord( ' ' ) ); define( 'PRINTABLES_END', ord( '~' ) ); echo "\nASCII Printer v". VERSION . "\nPrints the list of printable ASCII characters.\n" . "by Zapotek \n" . "\n\n"; for( $i = PRINTABLES_START; $i <= PRINTABLES_END; $i++ ) { echo "$i\t" . sprintf( "'%c'", $i ) . "\n"; } echo "\n"; ?>