YurunHttp 文件上传
<?php
$requestBody = new HttpRequestMultipartBody();
// POST参数
$requestBody->add('name', 'php');
// 文件域,后台用$_FILES['file']获取,第二个参数为本地文件路径,第三个参数为文件名
$requestBody->addFile('file', '/path/to/aaa.txt', 'aaa.txt');
$http = HttpRequest::newSession();
$response = $http->post('http://www.baidu.com/', $requestBody);