This library contains efficient classes and methods to work with input stream data for example: get numbers and strings from input stream(keyboard), also have some features for open and read files.
This library inspired from Scanner class in Java.
Get input stream as integer, float, string etc. Also it provide some methods to open and read files.
You can find more information in documentation.
Use [Composer] to install this package:
$ composer require baha2rmirzazadeh/phpscanner
use PHPScanner\Scanner\Scanner;
$scn = new Scanner();
$a = $scn->nextString();
print $a;
$m = $scn->nextFloat();
print $m;
$a = array();
for ($i = 0; $i < 3; $i++) {
$a[$i] = $scn->nextInt();
}
print_r($a);
$file_reader = new Scanner("C:\Users\Baha2r\Desktop\A.txt");
$file = "";
while ($file_reader->hasNext()) {
$file .= $file_reader->nextLine();
}
$file_reader->close();
print $file;
echo "\n";
All of classes and methods have documentation, you can read them and figure out how they work
- [Bahador Mirzazadeh]
- E-Mail: [[email protected]]
All contents of this package library are licensed under the [MIT license].