protected function EasyRdf_Parser_Turtle::parseObjectList in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/easyrdf/easyrdf/lib/EasyRdf/Parser/Turtle.php \EasyRdf_Parser_Turtle::parseObjectList()
Parse a objectList [8] @ignore
1 call to EasyRdf_Parser_Turtle::parseObjectList()
- EasyRdf_Parser_Turtle::parsePredicateObjectList in vendor/
easyrdf/ easyrdf/ lib/ EasyRdf/ Parser/ Turtle.php - Parse a predicateObjectList [7] @ignore
File
- vendor/
easyrdf/ easyrdf/ lib/ EasyRdf/ Parser/ Turtle.php, line 303
Class
- EasyRdf_Parser_Turtle
- Class to parse Turtle with no external dependancies.
Code
protected function parseObjectList() {
$this
->parseObject();
while ($this
->skipWSC() == ',') {
$this
->read();
$this
->skipWSC();
$this
->parseObject();
}
}