php分别模拟发送GET和POST请求,非常实用的额,也可作PHP CURL入门级的理解教材的,示例代码如下: <?php /* ** php分别模拟发送GET与POST请求 ** */ function httpRequest($url,$method,$params=array()){ if(trim($url)==''||!in_array($method,array('get','post'))||!is_array($params)){ return false; } $curl=cu…