我需要在我的PHP代码中使用基于Java的 OpenNLP 库。例如,我需要使用它的 Sentence Detector 组件 (en-sent.bin) 来分析我的 PHP 代码中的文本变量。
在其文档中,可以从Java代码访问该 API,如下所示:
InputStream modelIn = new FileInputStream("en-sent.bin");
try {
SentenceModel model = new SentenceModel(modelIn);
}
catch (IOException e) {
e.printStackTrace();
}
finally {
if (modelIn != null) {
try {
modelIn.close();
}
catch (IOException e) {
}
}
}
如何在PHP中做同样的事情?
换句话说,与上述Java代码等效的PHP是什么?