Skip to content

Commit 1b16e45

Browse files
committed
expand README
1 parent 581692d commit 1b16e45

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

README.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,23 @@ A PHP library for the [KDL Document Language](https://github.com/kdl-org/kdl).
66

77
For now, this library only supports parsing.
88

9+
Parsing is slow for now - for example, parsing a 45 line file with a tree depth of 5 is likely to take 250-300ms. This library favours correctness over performance - however, the aim is to optimise the parsing to a point of reasonable speed.
10+
11+
The parser uses [Parsica](https://parsica.verraes.net/) as an underlying parsing library in order to map fairly directly and clearly onto the published KDL grammar - Parsica uses FP principles, and one result of this is that the call stack depth used during parsing may be high. Be warned if you are using e.g. xdebug, as parsing may exceed any normal maximum stack depth that you may set.
12+
913
## Examples
1014

1115
```php
12-
$data = Shieldo\Kdl\Kdl::parse($kdlString);
16+
$document = Shieldo\Kdl\Kdl::parse($kdlString);
17+
foreach ($document as $node) {
18+
$node->getName(); //gets the name for the node @see https://github.com/kdl-org/kdl/blob/main/SPEC.md#node
19+
$node->getValues(); //gets a list of values for a node @see https://github.com/kdl-org/kdl/blob/main/SPEC.md#value
20+
$node->getProperties(); //gets an associative array of properties @see https://github.com/kdl-org/kdl/blob/main/SPEC.md#property
21+
foreach ($node->getChildren() as $child) {
22+
$child->getName(); //name for the child
23+
//etc
24+
}
25+
}
1326
```
1427

1528
## License

0 commit comments

Comments
 (0)