public static function EasyRdf_Parser_Turtle::isNameChar

@ignore

3 calls to EasyRdf_Parser_Turtle::isNameChar()

File

drupal/core/vendor/easyrdf/easyrdf/lib/EasyRdf/Parser/Turtle.php, line 1097

Class

EasyRdf_Parser_Turtle
Class to parse Turtle with no external dependancies.

Code

public static function isNameChar($c) {
  $o = ord($c);
  return self::isNameStartChar($c) || $c == '-' || $o >= 0x30 && $o <= 0x39 || $o == 0xb7 || $o >= 0x300 && $o <= 0x36f || $o >= 0x203f && $o <= 0x2040;
}