Cloudinary 图片上传使用 PHP 不工作

Cloudinary Image Upload Using PHP Not Working

我使用 cloudinary 上传图片,我尝试了所有可能的方式来上传图片,但我的代码卡在了..

$cloudUpload = \Cloudinary\Uploader::upload($_FILES["fileToUpload"]['tmp_name']);

这是我的代码,

<?php
require 'Cloudinary.php';
require 'Uploader.php';

\Cloudinary::config(array(
    "cloud_name" => "xxxxx",
    "api_key" => "xxxxxxxxxx",
    "api_secret" => "_xxxxxxxxxxxxxx"
));

if (isset($_POST["submit"])) {
    print_r($_FILES["fileToUpload"]);
    $cloudUpload = \Cloudinary\Uploader::upload($_FILES["fileToUpload"]['tmp_name']);
    print_r($cloudUpload);
}

?>
<!DOCTYPE HTML>
  <html>
    <head>
  </head>

  <body>

<form method="post" enctype="multipart/form-data">
    Select image to upload:
    <input type="file" name="fileToUpload" id="fileToUpload">
    <input type="submit" value="Upload Image" name="submit">
</form>

  </body>
</html>

我根本没有从 cloudinary 得到任何响应,顶部的 require 行也没有错误。

请帮忙!

你的代码对我来说效果很好。 确保您的凭据和 Cloudinary 帐户一切正常。 如果此问题仍然存在,要获得更多针对特定帐户的帮助,您应该 open a support-ticket Cloudinary。

如果在这个问题上遇到任何问题,请同时检查您的 php 版本。 Cloudinary PHP SDK 需要 php 5.4.