Skip to content

jasvrcek/Parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Parser

php library for parsing/converting data

Usage

Basic usage. Autoloader is optional.

//require 'Parser/Parser.php';
//Parser::registerAutoload();

$cp = new \Parser\CamelCase();

$stringConvertedToCamelCase = $cp->getOutput('my_example_string');

Optional factory:

$p = new \Parser\Parser();

$string = $p->get('CamelCase')->getOutput('example string');

You can add custom parsers in your project, override existing ones. The following example will load \MyProject\Parsers\JSON\Objects\MyCustomObjectParser to convert the json string into an instance of MyCustomObject.

$p = new \Parser\Parser('\\MyProject\\Parsers');

$myCustomObjectInstance = $p->get('MyCustomObject', 'JSON')->getOutput('{ "a_property": "example string" }');

The above example could actually use the included "JSONParser":

$json = '{ "a_property": "example string" }';
$myCustomObjectInstance = $p->get('JSON')->jsonToObject($json, '\\MyProject\\Objects\\MyCustomObject');

Included Parsers

Parser\CamelCase: convert strings to camel case $p->get('CamelCase')

Parser\ArrayToObject: convert array to instance of given class (class must have setter methods for all public properties) $p->get('ArrayToObject')

Parser\ArrayToCollection: convert array to collection of objects (collection must extend Parser\Base\Collection) $p->get('ArrayToCollection')

Parser\JSON\JSONParser: converts json to instance of given class or collection class, etc. $p->get('JSON')

About

php library for parsing/converting data

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages