dddddddd

来源:互联网 发布:linux textinfo安装 编辑:程序博客网 时间:2024/06/05 09:48
$ch = curl_init();$data = array(    'name' => 'Foo',    'file' => '@C:/nav_r.jpg',    "t" =>"共和国和",    "test" =>array(        "id" => "11111111",        "home" => "孝感"    ));$data = array('name' => 'Foo', 'file' => '@C:/nav_r.jpg',"t" =>"共和国和");//$data = http_build_query($data);curl_setopt($ch, CURLOPT_URL, 'http://mall.ncp.com/test2.php');curl_setopt($ch, CURLOPT_POST, 1);curl_setopt($ch, CURLOPT_POSTFIELDS, $data);curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);$file_contents = curl_exec($ch);echo $file_contents;exit;

0 0
原创粉丝点击