Example #1
0
<?php

require_once "terminal.php";
$aTerminal = new enhancedTerminal();
if (!$aTerminal->isBuild()) {
    $aTerminal = new dumbTerminal($theTerminal);
}
echo "Enter a few words and press return: ";
$aTerminal->getLine($aLine);
printf("\nThe line is: %s\n", $aLine);
Example #2
0
<?php

require_once "terminal.php";
$aTerminal = new enhancedTerminal();
if (!$aTerminal->isBuild()) {
    $aTerminal = new dumbTerminal($theTerminal);
}
echo "type a character please: ";
$aTerminal->getChar($aChar);
printf("\nThe value of the char is: 0x%x\n", ord($aChar));