Here you can download dedecms and then find lib_splitword_full.php this file, or to http://down.php100.com download word breaker, according to the following method can be used correctly dedecms word breaker.
DEDECMS Participle system Call code
/*
Here you can download dedecms and then find lib_splitword_full.php Tutorial This file, or to http://down.php100.com download word breaker, according to the following method can be used correctly dedecms word breaker.
*/
Require ("lib_splitword_full.php");
$STR = "Light Market transactions";
$t 1 = exectime ();
$SP = new Splitword ();
$t 2 = Exectime ();
$t 0 = $t 2-$t 1;
echo "Loading time: $t 0
";
echo $sp->findnewword ($sp->splitrmm ($STR)). "";
echo $sp->splitrmm ($STR). "";
$SP->clear ();
echo $str. "
";
$t 3 = Exectime ();
$t 0 = $t 3-$t 2;
echo "
Processing time: $t 0
";
function Exectime () {
$time = Explode ("", Microtime ());
$usec = (double) $time [0];
$sec = (double) $time [1];
return $sec + $usec;
}
http://www.bkjia.com/PHPjc/444865.html www.bkjia.com true http://www.bkjia.com/PHPjc/444865.html techarticle Here you can download dedecms and then find lib_splitword_full.php this file, or to http://down.php100.com download word breaker, according to the following method can be used correctly dedecms points ...