代码改变世界

随笔档案-2012年06月

curl、fsockopen、file_get_contents

2012-06-21 00:57 by phpor, 739 阅读, 收藏,
摘要: curl get方式$ch = curl_init();curl_setopt($ch, CURLOPT_URL, $url);curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);curl_setopt($ch, CURLOPT_TIMEOUT, 6);$result = curl_exec($ch);curl_close($ch);curl post方式$url = http://www.sina.com;$params = array('id'=>11,'aa'=>22,'cc'=>33) 阅读全文