注意:我不是在这里寻找 Java 中的字数统计算法。我在问在哪里可以找到str_word_count
PHP 源代码。
我希望将 PHP 函数重新创建(逐字逐行)str_word_count
作为 Java 方法:
public class PhpWordCounter {
public int strWordCount(String str) {
// The exact algorithm used in PHP's str_word_count here...
// The str_word_count method takes an optional parameter
// "format", which, if 0, returns the number of words.
// This is the portion of the routine that I will actually
// be mimicking.
}
}
我刚刚下载了 PHP 5.3.23 的源代码(tarball)并解压。我寻找str_word_count
并没有找到任何东西,所以我什至不确定要寻找什么,更不用说要搜索什么文件了。有人有什么想法吗?提前致谢!