hasJapanesePunctuationMarks() public static method

Determines whether the given string contains Japanese punctuation marks.
public static hasJapanesePunctuationMarks ( string $str ) : boolean
$str string The string to inspect.
return boolean TRUE if it contains Japanese punctuation marks, otherwise FALSE.
Beispiel #1
0
 public function testHasNotJapanesePunctuationMarks()
 {
     $result = Analyzer::hasJapanesePunctuationMarks($this->hiraganaCharacters);
     $this->assertEquals(FALSE, $result);
 }