|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
PHP的理解是新手最难迈过的一道门槛,不过你应该感到幸运的是PHP已经最大极限的为了新手而努力了,如果你学过其他的语言,也许会觉得PHP的确相当的简单,但是如果你之前什么都没学过,那么阿弥陀佛,硬着头皮琢磨吧。
<?phpclassSegmentation{
var$options=array(lowercase=>TRUE,
segment_english=>FALSE);
var$dict_name=Unknown;
var$dict_words=array();
functionsetLowercase($value){
if($value){
$this->options[lowercase]=TRUE;
}else{
$this->options[lowercase]=FALSE;
}
returnTRUE;
}
functionsetSegmentEnglish($value){
if($value){
$this->options[segment_english]=TRUE;
}else{
$this->options[segment_english]=FALSE;
}
returnTRUE;
}
functionload($dict_file){
if(!file_exists($dict_file)){
returnFALSE;
}
$fp=fopen($dict_file,r);
$temp=fgets($fp,1024);
if($temp===FALSE){
returnFALSE;
}else{
if(strpos($temp,"t")!==FALSE){
list($dict_type,$dict_name)=explode("t",trim($temp));
}else{
$dict_type=trim($temp);
$dict_name=Unknown;
}
$this->dict_name=$dict_name;
if($dict_type!==DICT_WORD_W){
returnFALSE;
}
}
while(!feof($fp)){
$this->dict_words[rtrim(fgets($fp,32))]=1;
}
fclose($fp);
returnTRUE;
}
functiongetDictName(){
return$this->dict_name;
}
functionsegmentString($str){
if(count($this->dict_words)===0){
returnFALSE;
}
$lines=explode("n",$str);
return$this->_segmentLines($lines);
}
functionsegmentFile($filename){
if(count($this->dict_words)===0){
returnFALSE;
}
$lines=file($filename);
return$this->_segmentLines($lines);
}
function_segmentLines($lines){
$contents_segmented=;
foreach($linesas$line){
$contents_segmented.=$this->_segmentLine(rtrim($line))."n";
}
do{
$contents_segmented=str_replace(,,$contents_segmented);
}while(strpos($contents_segmented,)!==FALSE);
return$contents_segmented;?>
HTML中的任何元素都要亲自实践,只有明白了什么元素会起到什么效果之后,你才会记忆深刻,而一味的啃书,绝对是不行的,我想大部分新手之所以觉得概念难学,大部分是一个字“懒”,懒是阻止进步的最大敌人,所以克服掉懒的习惯,才能更快的学好一样工具。 |
|