我正在使用Brightcove API将视频文件从我的服务器上传到我的Brightcove帐户。我使用了以下代码:
$fields = array(
'json' => json_encode( array(
'method' => "create_video",
'params' => array(
'video' => array(
'name' => $video->submission_by_name.' '.time(),
'shortDescription' => $video->submission_question_1
),
"token" => $this->config->item('brightcove_write_token'),
"encode_to" => "MP4",
"create_multiple_renditions" => "True"
))
),
'file' => new CURLFile(FCPATH.'assets/uploads/submitted/'.$video->filename)
);
//open connection
$ch = curl_init();
curl_setopt($ch,CURLOPT_URL, $this->config->item('brightcove_write_endpoint'));
curl_setopt($ch,CURLOPT_POST, count($fields));
curl_setopt($ch,CURLOPT_POSTFIELDS, $fields);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
//execute post
$result = json_decode(curl_exec($ch));
这在本地工作,但是实时服务器正在运行PHP 5.3,因此我无法使用new CURLFile()
如何以与PHP 5.3.3一起使用的方式发送文件?我尝试更改文件字段以使用@
语法,如下所示:
'file' => '@' . FCPATH.'assets/uploads/submitted/'.$video->filename
但这似乎不起作用,API返回错误说:
FilestreamRequiredError: upload requires a multipart/form-data POST with a valid filestream
所以看起来文件没有透过。
我也尝试像这样复制curl_file_create
函数:
private function custom_curl_file_create($filename, $mimetype = '', $postname = '')
{
if($mimetype=='') {
$mimetype = mime_content_type($filename);
}
return "@$filename;filename="
. ($postname ?: basename($filename))
. ($mimetype ? ";type=$mimetype" : '');
}
然后做:
'file' => $this->custom_curl_file_create(FCPATH.'assets/uploads/submitted/'.$video->filename)
但这不起作用,API返回与之前相同的错误
答案 0 :(得分:0)
显然有多个POST请求存在“@”问题。我找到了解决问题的以下信息:
Solution for PHP 5.5 or later:
- Enable CURLOPT_SAFE_UPLOAD.
- Use CURLFile instead of "@".
Solution for PHP 5.4 or earlier:
- Build up multipart content body by youself.
- Change "Content-Type" header by yourself.
The following snippet will help you :D
<?php
/**
* For safe multipart POST request for PHP5.3 ~ PHP 5.4.
*
* @param resource $ch cURL resource
* @param array $assoc "name => value"
* @param array $files "name => path"
* @return bool
*/
function curl_custom_postfields($ch, array $assoc = array(), array $files = array()) {
// invalid characters for "name" and "filename"
static $disallow = array("\0", "\"", "\r", "\n");
// build normal parameters
foreach ($assoc as $k => $v) {
$k = str_replace($disallow, "_", $k);
$body[] = implode("\r\n", array(
"Content-Disposition: form-data; name=\"{$k}\"",
"",
filter_var($v),
));
}
// build file parameters
foreach ($files as $k => $v) {
switch (true) {
case false === $v = realpath(filter_var($v)):
case !is_file($v):
case !is_readable($v):
continue; // or return false, throw new InvalidArgumentException
}
$data = file_get_contents($v);
$v = call_user_func("end", explode(DIRECTORY_SEPARATOR, $v));
$k = str_replace($disallow, "_", $k);
$v = str_replace($disallow, "_", $v);
$body[] = implode("\r\n", array(
"Content-Disposition: form-data; name=\"{$k}\"; filename=\"{$v}\"",
"Content-Type: application/octet-stream",
"",
$data,
));
}
// generate safe boundary
do {
$boundary = "---------------------" . md5(mt_rand() . microtime());
} while (preg_grep("/{$boundary}/", $body));
// add boundary for each parameters
array_walk($body, function (&$part) use ($boundary) {
$part = "--{$boundary}\r\n{$part}";
});
// add final boundary
$body[] = "--{$boundary}--";
$body[] = "";
// set options
return @curl_setopt_array($ch, array(
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => implode("\r\n", $body),
CURLOPT_HTTPHEADER => array(
"Expect: 100-continue",
"Content-Type: multipart/form-data; boundary={$boundary}", // change Content-Type
),
));
}
这是从PHP CURLFile::__construct documentation
的用户提供的备注部分检索到的我这样使用它并且有效:
$fields = array(
'json' => json_encode( array(
'method' => "create_video",
'params' => array(
'video' => array(
'name' => $video->submission_by_name.' '.time(),
'shortDescription' => $video->submission_question_1
),
"token" => $this->config->item('brightcove_write_token'),
"encode_to" => "MP4",
"create_multiple_renditions" => "True"
))
)
);
$files = array(
'file' => FCPATH.'assets/uploads/submitted/'.$video->filename
);
//open connection
$ch = curl_init();
curl_setopt($ch,CURLOPT_URL, $this->config->item('brightcove_write_endpoint'));
$this->curl_custom_postfields($ch, $fields, $files);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
//execute post
$result = json_decode(curl_exec($ch));