这里介绍一个php curl方式上传文件的例子:
@e:/png.png);//文件路径,前面要加@,表明是文件上传. $curl = curl_init(http://localhost/a.php); curl_setopt($curl,curlopt_post,true); curl_setopt($curl,curlopt_postfields,$file); curl_exec($curl);//by bbs.it-home.org?>
说明:curl方式上传文件,无需创建任何表单,代码更简洁。