result = $result; $this->postObj = $postObj; $this->params = $params; } public function execute(){ $client = Typecho_Http_Client::get(); //金山词霸http://open.iciba.com/dsapi/ //词海http://en.dict.cn/api/article/daily $response = $client->send('http://en.dict.cn/api/article/daily'); $response = json_decode($response); $text = $response->en.chr(10).chr(10); $text .= $response->ch; $this->result->setMsgType(MessageTemplate::TEXT)->setText($text)->send(); } } ?>