php-extended / php-io-object
Library that implements the library php-extended/php-io-interface
6.0.4
2023-08-21 18:18 UTC
Requires
- php: >=7.4
- php-extended/php-io-interface: ^6
- php-extended/polyfill-php80-stringable: ^1.2
Requires (Dev)
This package is auto-updated.
Last update: 2023-11-21 19:02:00 UTC
README
Library that implements the library php-extended/php-io-interface.
Installation
The installation of this library is made via composer and the autoloading of all classes of this library is made through their autoloader.
- Download
composer.phar
from their website. - Then run the following command to install this library as dependency :
php composer.phar php-extended/php-io-object ^6
Basic Usage
For the output stream:
use PhpExtended\Io\ConsoleOutputStream;
$console = new ConsoleOutputStream();
$console->write('<your string here>', true); // equivalent to echo '<your string>'."\n";
For the input stream:
use PhpExtended\Io\ConsoleInputStream;
$console = new ConsoleInputStream();
$input = $console->readline(); // equivalent to readline();
License
MIT (See license file).