12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <?php
-
- include_once 'phing/system/io/Reader.php';
- class ConsoleReader extends Reader {
-
- function readLine() {
-
- $out = fgets(STDIN);
- $out = rtrim($out);
- return $out;
- }
-
-
- function read($len = null) {
-
- $out = fread(STDIN, $len);
-
-
- return $out;
-
-
-
-
-
- }
-
- function close() {
-
- }
- function open() {
-
- }
-
- function eof() {
- return feof(STDIN);
- }
-
-
- function getResource() {
- return "console";
- }
- }
|