baha2rmirzazadeh/phpscanner

A php library to handle input stream. It inspired from Java Scanner class.

v1.5.5 2020-01-29 18:12 UTC

This package is auto-updated.

Last update: 2024-03-29 03:52:13 UTC


README

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.

Features

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.

Installation

Use [Composer] to install this package:

$ composer require baha2rmirzazadeh/phpscanner

Example

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";

Classes and Methods description

All of classes and methods have documentation, you can read them and figure out how they work

Authors

License

All contents of this package library are licensed under the [MIT license].