public static function EasyRdf_Parser_Turtle::isLocalEscapedChar in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/easyrdf/easyrdf/lib/EasyRdf/Parser/Turtle.php \EasyRdf_Parser_Turtle::isLocalEscapedChar()
@ignore
1 call to EasyRdf_Parser_Turtle::isLocalEscapedChar()
- EasyRdf_Parser_Turtle::readLocalEscapedChar in vendor/
easyrdf/ easyrdf/ lib/ EasyRdf/ Parser/ Turtle.php
File
- vendor/
easyrdf/ easyrdf/ lib/ EasyRdf/ Parser/ Turtle.php, line 1279
Class
- EasyRdf_Parser_Turtle
- Class to parse Turtle with no external dependancies.
Code
public static function isLocalEscapedChar($c) {
return in_array($c, self::$localEscapedChars);
}