curl 经常使用的 curl get curl post
curl get 替代 直接用file_get_contents($url) 就可以了
curl post 替代如下:
function Post($url, $post = null) { $content = http_build_query($post); $content_length = strlen($content); $options = array( 'http' => array( 'method' => 'POST', 'header' =>"Content-type: application/x-www-form-urlencoded", 'content' => $post ) ); return file_get_contents($url, false, stream_context_create($options)); }
希望本文所述对大家的php程序设计有所帮助。