Here is the code and coming empty array. <?php require './PHP-Stanford-NLP-master/src/StanfordNLP/Base.php'; require './PHP-Stanford-NLP-master/src/StanfordNLP/Exception.php'; require './PHP-Stanford-NLP-master/src/StanfordNLP/Parser.php'; require './PHP-Stanford-NLP-master/src/StanfordNLP/StanfordTagger.php'; require './PHP-Stanford-NLP-master/src/StanfordNLP/NERTagger.php'; $pos = new \StanfordNLP\NERTagger('/Users/xxxx/Downloads/stanford-ner-2014-10-26/classifiers/english.all.3class.distsim.crf.ser.gz','/Users/xxxx/Downloads/stanford-ner-2014-10-26/stanford-ner.jar'); $result = $pos->tag(explode(' ', "The Federal Reserve Bank of New York led by Timothy R. Geithner.")); var_dump($result); ?> ##### O/P array(0) { }
Here is the code and coming empty array.
tag(explode(' ', "The Federal Reserve Bank of New York led by Timothy R. Geithner.")); var_dump($result); ?>O/P
array(0) {
}