예제 #1
0
파일: Stdio.php 프로젝트: superwmh/swoole
 static function input($h = '')
 {
     if (!self::$in) {
         self::$in = fopen('php://stdin', 'r');
     }
     if ($h) {
         self::output($h);
     }
     return trim(fread(self::$in, self::$buffer_size));
 }