Craft\SeomaticVariable::extractKeywords PHP 메소드

extractKeywords() 공개 메소드

* -------------------------------------------------------------------------------- Extract the most important words from the passed in text via TextRank --------------------------------------------------------------------------------
public extractKeywords ( $text = null, $limit = 15, $withoutStopWords = true )
    public function extractKeywords($text = null, $limit = 15, $withoutStopWords = true)
    {
        $result = craft()->seomatic->extractKeywords($text, $limit, $withoutStopWords);
        return $result;
    }