0

linux下用curl命令post东西(摘)

Posted in Linux at 七月 22nd, 2010 / No Comments »

linux下写shell脚本程序 经常会遇到需要post提交东西的时候 这时候用curl是非常方便的 我举一个例子: curl -A “Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)” \ -e “http://www.xxx.com/poll.shtml”...

0

curl 实用

Posted in PHP at 十一月 25th, 2007 / No Comments »

参考网站 http://cn2.php.net/manual/zh/ref.curl.php ////////////模拟登陆PHPWIND/DZ论坛方法 /* #利用cookie和post用法,以下PW论坛 */ $ch = curl_init(); curl_setopt($ch, CURLOPT_COOKIEJAR, “D:/APMServ...

<? function curl_string ($url,$user_agent,$proxy){ $ch = curl_init(); curl_setopt ($ch, CURLOPT_PROXY, $proxy); curl_setopt ($ch, CURLOPT_URL, $url); curl_setopt ($ch, CURLOPT_USERAGENT, $user_a...