02.6: Get Line
How do we read input from the command line?
<?php # * getline $stdin = fopen( 'php://stdin', 'r' ); while ($line = fgets( $stdin )) { print "$line"; } ?>