PHP code example of jeurboy / object-field-selector
1. Go to this page and download the library: Download jeurboy/object-field-selector library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
jeurboy / object-field-selector example snippets
$parser = new Jeurboy\SimpleObjectConverter\SchemaParser();
$parser->addSchema("test1");
$token = $parser->getParsedSchema();
$data = [
'test1' => "11234",
'test2' => "22222"
];
$DataParser = new Jeurboy\SimpleObjectConverter\DataParser();
$return = $DataParser->getOutput($data, $token);
print_r($return);
$parser = new Jeurboy\SimpleObjectConverter\SchemaParser();
$parser->addSchema("test1.eee");
$token = $parser->getParsedSchema();
$data = [
'test1' => [
'eee' => "hello holy",
]
];
$DataParser = new Jeurboy\SimpleObjectConverter\DataParser();
$return = $DataParser->getOutput($data, $token);
print_r($return);
$parser = new Jeurboy\SimpleObjectConverter\SchemaParser();
$parser->addSchema("test1");
$token = $parser->getParsedSchema();
$data = [
'test1' => [
'eee' => "hello holy",
'fff' => "hello holy",
]
];
$DataParser = new Jeurboy\SimpleObjectConverter\DataParser();
$return = $DataParser->getOutput($data, $token);
print_r($return);
$parser = new Jeurboy\SimpleObjectConverter\SchemaParser();
$parser->addSchema("test1.hello");
$token = $parser->getParsedSchema();
$data = [
'test1' => [
[
"hello" => "world1",
"ok" => "google1",
],[
"hello" => "world2",
"ok" => "google2",
],
]
];
$DataParser = new Jeurboy\SimpleObjectConverter\DataParser();
$return = $DataParser->getOutput($data, $token);
print_r($return);