Download the PHP package nykoseki/forecastalibs without Composer
On this page you can find all versions of the php package nykoseki/forecastalibs. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package forecastalibs
Forecastalib
Overview
Description
様々な文字列を柔軟にパースするためのパーサコンビネータ集を提供します。 また、各種パーサコンビネータの作成を容易にするためのユーティリティも含みます。
Demo
VS.
Requirement
composer.jsonを参照してください
Usage
$parser = ParserFactory::Seq()
->add(ParserFactory::Token("<title>"))
->add(ParserFactory::Regex("/^[^<>]+/"))
->add(ParserFactory::Token("</title>"));
$target = "<title>Hello World</title>";
$context = $parser->parse(ParserContext::create($target));
$parsed = $context->parsed();
echo print_r($parsed);
Array
(
[0] => <title>
[1] => Hello World
[2] => </title>
)
Install
composer require nykoseki/forecastalibs
Contribution
Licence
Author
All versions of forecastalibs with dependencies
PHP Build Version
Package Version
Requires
php Version
>=7.0.0
vlucas/phpdotenv Version ^2.2
monolog/monolog Version ^1.19
illuminate/support Version ~5.0
vlucas/phpdotenv Version ^2.2
monolog/monolog Version ^1.19
illuminate/support Version ~5.0
The package nykoseki/forecastalibs contains the following files
Loading the files please wait ....