我要搬博客到这里来,请协助
我在51testing上的博客:http://www.51testing.com/?77492
请帮助我搬家到我的博客:http://www.cnblogs.com/zhuque/
我自己导入rss的,导入的数据不完整,只有博客标题,没有内容。并且300多条博客的,值导入成50个。
请帮助我
1 我在51testing上的博客:http://www.51testing.com/?77492 2 3 请帮助我搬家到我的博客:http://www.cnblogs.com/zhuque/
function parseMemcacheResults($str){ $res = array(); $lines = explode("\r\n",$str); $cnt = count($lines); for($i=0; $i< $cnt; $i++){ $line = $lines[$i]; $l = explode(' ',$line,3); if (count($l)==3){ $res[$l[0]][$l[1]]=$l[2]; if ($l[0]=='VALUE'){ // next line is the value $res[$l[0]][$l[1]] = array(); list ($flag,$size)=explode(' ',$l[2]); $res[$l[0]][$l[1]]['stat']=array('flag'=>$flag,'size'=>$size); $res[$l[0]][$l[1]]['value']=$lines[++$i]; } }elseif($line=='DELETED' || $line=='NOT_FOUND' || $line=='OK'){ return $line; } } return $res; }