使用CURL把文件上传至服务器

巴扎黑
发布: 2016-11-22 16:58:26
原创
1661 人浏览过

一、客户端的PHP代码 

<?php
//初始化一个句柄
$ch = curl_init();
//设置访问地址
curl_setopt($ch, CURLOPT_URL, "http://cq01-testing-lv01.vm.baidu.com:8808/mobile/uploadclient");
//curl_setopt($ch, CURLOPT_RETURNTRANSFER, 0);
//参数设置,是否显示头部信息,1为显示,0为不显示
curl_setopt($ch, CURLOPT_HEADER, 0);
//伪造网页来源地址,伪造来自百度的表单提交
//curl_setopt($ch, CURLOPT_REFERER, "http://www.baidu.com");
//设置这个是POST请求
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 100);
//furl中的值必须以@符号开头,@后面是你的相对或者绝对路径
$furl="@./a.php";
$post_data = array (
    "client_file" => $furl
);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
curl_exec($ch);
if(FALSE === curl_exec($ch)){
    echo "cUrl Error:".curl_error($ch);
}else{
    echo "upload success";
}
//释放cURL句柄
curl_close($ch);
登录后复制

二、服务器端代码

<?php
if(!isset($_FILES[&#39;client_file&#39;]) || $_FILES[&#39;client_file&#39;][&#39;error&#39;] > 0){
            $arrRet[&#39;error_no&#39;] = -1;
            $arrRet[&#39;data&#39;] = $arrRet[&#39;data&#39;] = array(
                &#39;msg&#39; => "upload file failed",
            );
        }
$arrInput = array(
                &#39;filename&#39; => $_FILES[&#39;client_file&#39;][&#39;name&#39;],
                &#39;tmp_name&#39; => $_FILES[&#39;client_file&#39;][&#39;tmp_name&#39;],
                &#39;type&#39; => $_FILES[&#39;file&#39;][&#39;type&#39;],
            );
move_uploaded_file($arrInput[&#39;tmp_name&#39;],ROOT_PATH."/data/app/client/bin/".$arrInput[&#39;filename&#39;]);
登录后复制

三、使用网页上传的方式

<form action="/upload.php" method="post" enctype="multipart/form-data">
                <label>上传文件: <input name="client_file" type="file"/></label>
                <input name="submit" type="submit" value="提交"/>
</form>
登录后复制


相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板