正在研究中,如果要看这个程序的详细说明和演示,请到这个地方看,真的很爽: http://steven.haryan.to/php/KwIndex.html
注意,只能在linux,unix下用。
< ?php
$debug = 0;
if($debug) require "Dumper.lib"; //这个全文检索需要的库文件,你有吗?
function _debug() {
global $debug;
$args = func_get_args();
if (!$debug) return;
echo "
debug: ", htmlentities(join("", $args)), "
n";
}
clas...