Guest User

Untitled

a guest
Jun 20th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <?php
  2. stream_set_blocking(STDIN, 0);
  3. while(1) {
  4. while ( $input == '' ) {
  5. $input = trim(fgets(STDIN));
  6. }
  7. if ( strtolower($input) == 'exit' ) {
  8. die();
  9. }
  10. echo $input."\r\n";
  11. $input = '';
  12. }
  13. ?>
Add Comment
Please, Sign In to add comment