發表文章

目前顯示的是 9月, 2014的文章

[Windows] 取消IE增強式安全性 (Win 2003 server)

圖片
關掉 IE 討人厭的"增強式安全性"提示視窗 取消打勾後就大功告成了~~

[Windows] 「顯示桌面」不見,手動復原

此段語法貼到筆記本,另存新檔為「顯示桌面.scf」即可~ [Shell] Command=2 IconFile=explorer.exe,3 [Taskbar] Command=ToggleDesktop

[PHP][Curl] 取得302轉址後的url

PHP 利用 curl 取得轉址後的 url function curl_302($url) { $ch = curl_init(); curl_setopt($ch , CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch , CURLOPT_URL, $url); curl_setopt($ch , CURLOPT_FOLLOWLOCATION, 1); // 302 redirect $data = curl_exec($ch); // return page content $info = curl_getinfo($ch); $error = curl_errno($ch); curl_close($ch); if (!$error) { return $info["url"]; } else { return FALSE; } } PS.一定要先執行curl_exec() 才可執行 curl_getinfo() 或 curl_errno() curl_getinfo($ch) 內容 Array ( [url] => http://www.xxxx.com.tw; [content_type] => text/html; charset=UTF-8 [http_code] => 200 [header_size] => 222 [request_size] => 280 [filetime] => -1 [ssl_verify_result] => 0 [redirect_count] => 0 [total_time] => 0.713066 [namelookup_time] => 0.003118 [connect_time]