php library for parsing/converting data
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');
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')