1. 有興趣的請短我你的 SKYPE 或是 MSN 帳號
2. 發包方式例如 : 請製作某個 function ,指定傳什麼參數進去回傳什麼結果值出來 (下面有格式的例子),使用 v3.2.12.0 版本
3. 需要滿多功能的, 有興趣的請短我吧~~ 另外粗略的報個價,看一個 func 收多少錢, 用支付寶支付或是網轉都可以.
4. 目前需求功能 :
- 自動登入 discuz dvbbs , 傳入值三個 $x = 帳號 , $y= 密碼 , $z = 選擇 discuz or dvbbs (請注意各種版本及狀況)
- 自動註冊 discuz dvbbs , 傳入值三個 $x = 帳號 , $y= 密碼 , $z = 選擇 discuz or dvbbs (請注意各種版本及狀況)
func google_get($x,$y)
InetGet("http://www.google.com/search?q="&$x&"&num="&$y&"&filter=1&ie=big5&hl=zh-TW&as_filetype=php&lr=","temp.txt",1,0)
While @InetGetActive
sleep (50)
WEnd
$obody = StringLower(FileRead ("temp.txt"))
FileDelete ("temp.txt")
If StringInStr($obody,"<ol>") = 0 Then Return MsgBox(0,"沒有任何資料","結束")
$allstr = _StringBetween($obody,"<ol>","</ol>")
$sp01 = _StringBetween($allstr[0],"class=r","/h3")
For $i = 1 To UBound($sp01)
$sp02 = _StringBetween($sp01[$i-1],"href="," ")
$kweb = StringReplace($sp02[0],chr(34),"")
IniWrite ("data.ini",GUICtrlRead($inp_getdiz_web),"getwebsouce_"&$i,$kweb)
Next
EndFunc
|