4

我是 php 的初学者,我正在使用 HP 的 IDOL OnDemand api 从任何图像文件中提取文本。

我必须设置一个 curl 连接并执行 api 请求,但是当我尝试使用 @ 方法发布文件时,在 php 5.5 中它已被弃用并建议我使用 CURLFile。

我还挖掘了 php 手册并提出了类似的内容https://wiki.php.net/rfc/curl-file-upload

代码如下:

$url = 'https://api.idolondemand.com/1/api/sync/ocrdocument/v1';

$output_dir = 'uploads/';
if(isset($_FILES["file"])){

$filename = md5(date('Y-m-d H:i:s:u')).$_FILES["file"]["name"];

move_uploaded_file($_FILES["file"]["tmp_name"],$output_dir.$filename);

$filePath = realpath($output_dir.$filename);
$post = array(
    'apikey' => 'apikey-goes-here',
    'mode' => 'document_photo',
    'file' => '@'.$filePath
);

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_POST,1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
$result = curl_exec($ch);
curl_close($ch);
echo $result;

unlink($filePath);

如果有任何重写代码并向我展示如何使用 Curlfile,我将不胜感激。

谢谢,

4

2 回答 2

12

我相信这就像改变你'@'.$filePath使用 CurlFile 一样简单。

$post = array('apikey' => 'key', 'mode' => 'document_photo', 'file' => new CurlFile($filePath));

以上对我有用。

注意:我为惠普工作。

于 2015-04-01T18:15:58.530 回答
1

由于时间压力,我在集成第三方 API 时做了一个快速的解决方法。您可以在下面找到代码。

$url:要发布到的域和页面;例如http://www.snyggamallar.se/en/ $params: array[key] = value 格式,就像你在 $post 中一样。

警告:任何以 @ 开头的值都将被视为文件,这当然是一个限制。在我的情况下它不会引起任何问题,但请在您的代码中考虑到它。

static function httpPost($url, $params){
    foreach($params as $k=>$p){
        if (substr($p, 0, 1) == "@") { // Ugly
            $ps[$k] = getCurlFile($p);
        } else {
            $ps[$k] = utf8_decode($p);
        }
    }

    $ch = curl_init($url);
    curl_setopt ($ch, CURLOPT_POST, true);
    curl_setopt ($ch, CURLOPT_POSTFIELDS, $ps);
    curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true);

    $res = curl_exec($ch);
    return $res;
}

static function getCurlFile($filename)
{
    if (class_exists('CURLFile')) {
        return new CURLFile(substr($filename, 1));
    }
    return $filename;
}
于 2015-01-23T02:09:03.790 回答