stdin.php 84 B

1234
  1. <?php
  2. swoole_event_add(STDIN, function($fp) {
  3. echo "STDIN: ".fread($fp, 8192);
  4. });