protected function EasyRdf_Parser_Turtle::parseBase in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/easyrdf/easyrdf/lib/EasyRdf/Parser/Turtle.php \EasyRdf_Parser_Turtle::parseBase()
Parse base [5] @ignore
1 call to EasyRdf_Parser_Turtle::parseBase()
- EasyRdf_Parser_Turtle::parseDirective in vendor/
easyrdf/ easyrdf/ lib/ EasyRdf/ Parser/ Turtle.php - Parse a directive [3] @ignore
File
- vendor/
easyrdf/ easyrdf/ lib/ EasyRdf/ Parser/ Turtle.php, line 217
Class
- EasyRdf_Parser_Turtle
- Class to parse Turtle with no external dependancies.
Code
protected function parseBase() {
$this
->skipWSC();
$baseUri = $this
->parseURI();
$this->baseUri = new EasyRdf_ParsedUri($baseUri['value']);
}