コード例 #1
0
ファイル: PosParse.php プロジェクト: cargilcm/Wikparser
 public function getPos($wikitext, $count)
 {
     $posArray = $this->extractPos($wikitext, $count);
     $stripTagsObject = new StripTags();
     $posArray = $stripTagsObject->stripTags($posArray, $this->langCode);
     return array_unique($posArray);
 }
コード例 #2
0
ファイル: GenderParse.php プロジェクト: cargilcm/Wikparser
 public function getGender($wikitext, $count)
 {
     $genderArray = $this->extractGender($wikitext, $count);
     $stripTagsObject = new StripTags();
     return $stripTagsObject->stripTags($genderArray, $this->langCode);
 }