function send_post2($url, $post_data,$i=1) {
    $postdata = http_build_query($post_data);
    $options = array(
	    'http' => array(
	      'method' => 'POST',
	      'header' => 'Content-type:application/x-www-form-urlencoded',
	      'content' => $postdata,
	      'timeout' => 15 * 60 // 超时时间(单位:s)
	    )
    );
    $context = stream_context_create($options);
    $result = file_get_contents($url, false, $context);
    return $result; 
}
/**
 * 字符串 转 数组
 *
 * @param object $obj 对象
 * @return array
 * @author lison
 */
function stringtoarray($data) {
	$data = trim($data);
	if($data == '') return array();
	if(strpos($data, 'array')===0){
		@eval("\$array = $data;");
	}else{
		if(strpos($data, '{\\')===0) $data = stripslashes($data);
		$array=json_decode($data,true);
		if(strtolower(CHARSET)=='gbk'){
			$array = mult_iconv("UTF-8", "GBK//IGNORE", $array);
		}
	}
	return $array;
}