白目喵™ 分享
15 years ago
程式碼
latest #24
白目喵™ 分享
15 years ago
<?php
白目喵™ 分享
15 years ago
# Copyright (c) 2010 Ming Tsay. All rights reserved.
白目喵™ 分享
15 years ago
# Website: mt.aa.am
立即下載
白目喵™ 分享
15 years ago
# E-Mail: [email protected]
白目喵™ 分享
15 years ago
# If you have any problem or advice, you can send a mail to me.
白目喵™ 分享
15 years ago
#若您有任何問題或建議,您可以寄信給我。
白目喵™ 分享
15 years ago
class plurkBot {
白目喵™ 分享
15 years ago
private $nick;
白目喵™ 分享
15 years ago
private $pw;
白目喵™ 分享
15 years ago
private $uid;
白目喵™ 分享
15 years ago
private $ch;
白目喵™ 分享
15 years ago
private $lang = "tr_ch";
白目喵™ 分享
15 years ago
}
白目喵™ 分享
15 years ago
$this -> nick = $Nickname;
白目喵™ 分享
15 years ago
$this -> pw = $Password;
白目喵™ 分享
15 years ago
$this -> ch = curl_init();
白目喵™ 分享
15 years ago
curl_setopt($this -> ch, CURLOPT_RETURNTRANSFER, 1);
白目喵™ 分享
15 years ago
curl_setopt($this -> ch, CURLOPT_COOKIEJAR, "cookie.txt");
白目喵™ 分享
15 years ago
}
白目喵™ 分享
15 years ago
public function login() {
白目喵™ 分享
15 years ago
curl_setopt($this -> ch, CURLOPT_URL, "www.plurk.com/Users/logi...;
白目喵™ 分享
15 years ago
curl_setopt($this -> ch, CURLOPT_POSTFIELDS, "nick_name=". $this -> nick . "&password=" . $this -> pw);
白目喵™ 分享
15 years ago
preg_match('/user_id\": (.*?)\,/s', download("www.plurk.com/$this->nick"), $matches);
白目喵™ 分享
15 years ago
$this -> uid = $matches[1];
back to top