1: <?php
2: /**
3: * ConsoleInput file.
4: *
5: * PHP 5
6: *
7: * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
8: * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
9: *
10: * Licensed under The MIT License
11: * Redistributions of files must retain the above copyright notice.
12: *
13: * @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
14: * @link http://cakephp.org CakePHP(tm) Project
15: * @package Cake.Console
16: * @since CakePHP(tm) v 2.0
17: * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
18: */
19: /**
20: * Object wrapper for interacting with stdin
21: *
22: * @package Cake.Console
23: */
24: class ConsoleInput {
25:
26: /**
27: * Input value.
28: *
29: * @var resource
30: */
31: protected $_input;
32:
33: /**
34: * Constructor
35: *
36: * @param string $handle The location of the stream to use as input.
37: */
38: public function __construct($handle = 'php://stdin') {
39: $this->_input = fopen($handle, 'r');
40: }
41:
42: /**
43: * Read a value from the stream
44: *
45: * @return mixed The value of the stream
46: */
47: public function read() {
48: return fgets($this->_input);
49: }
50:
51: }
52: