萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> php編程 >> PHP制作百度詞典查詞采集器

PHP制作百度詞典查詞采集器

 這篇文章主要介紹了PHP制作百度詞典查詞采集器的相關資料,需要的朋友可以參考下

   

百度dict 采集樣本

寫的采集百度dict詞典翻譯後的所有結果數據,當然附帶了13.5w單詞庫和采集簡單的案例,這裡我把寫出的主要類dict.class.php放出來,項目地址http://github.com/widuu/baidu_dict,有需要的直接fork就可以了~麼麼哒,這東西用的人很少,所以有用的兄弟拿走了哈~

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 <?php /** * dict.class.php 采集百度詞典翻譯內容 * * @copyright (C) 2014 widuu * @license http://www.widuu.com * @lastmodify 2014-2-15 */     header("content-type:text/html;charset=utf8"); class Dict{   private $word;   //顯示的條數 private static $num = 10;   public function __construct(){}     /** * 公用返回百度采集數據的方法 * @param string 英文單詞 * retun array( * symbol" => 音標 * "pro" => 發音 * "example"=> 例句 * "explain"=> 簡明釋義 * "synonym"=> 同反義詞 * "phrase" => 短語數組 * ) * */ public function content($word){ $this -> word = $word; $symbol = $this -> Pronounced(); $pro = $this->getSay(); $example = $this -> getExample(); $explain = $this -> getExplain(); $synonym = $this -> getSynonym(); $phrase = $this -> getPhrase(); $result = array( "symbol" => $symbol, //音標 "pro" => $pro, //發音 "example"=> $example, //例句 "explain"=> $explain, //簡明釋義 "synonym"=> $synonym, //同反義詞 "phrase" => $phrase //短語數組 ); return $result; }     /** * 遠程獲取百度翻譯內容 * get function curl * retun string * */   private function getContent(){ $useragent = "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:23.0) Gecko/20100101 Firefox/23.0"; $ch = curl_init(); $url = "http://dict.baidu.com/s?wd=".$this->word; curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_USERAGENT,$useragent); curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_HTTPGET, 1); curl_setopt($ch, CURLOPT_AUTOREFERER,1); curl_setopt($ch, CURLOPT_HEADER, 0); curl_s
copyright © 萬盛學電腦網 all rights reserved