首页 > 代码库 > PHP 模拟POST请求

PHP 模拟POST请求

/** * 模拟post进行url请求 * @param string $url * @param array $post */function request_post($url, $post = array()){	if (empty($url) || empty($post))	{		return false;	}		$post_data = http://www.mamicode.com/http_build_query($post);>

  

PHP 模拟POST请求