抓包软件和curl操作类

Fiddler


<?php

/**
 *	Author: chencheng ([email protected])	
 *	Datetime: 2016.03.05
 *	Describe: Curl操作类
 */

class Curl{

	public function get($url) {

	    $ch = curl_init($url);

	    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
            curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);

            $result = curl_exec($ch);

            curl_close($ch);

            return $result;
	}

	public function post($url, $feild) {

	    $ch = curl_init();

	    curl_setopt($ch, CURLOPT_URL, $url);
	    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
	    curl_setopt($ch, CURLOPT_POST, 1);
	    curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($feild)); 

	    $result = curl_exec($ch);

	    curl_close($ch);

	    return $result;
	}
}


你可能感兴趣的:(抓包软件和curl操作类)