使用PHP无法工作的Cloudinary图像上传

时间:2015-11-21 08:37:42

标签: php cloudinary

我使用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的响应,并且没有任何错误就行了。

请帮助!

2 个答案:

答案 0 :(得分:0)

你的代码在我的结尾很有用。 使用凭据和Cloudinary帐户确保一切正常。 如果此问题仍然存在,对于更多和特定于帐户的帮助,您应该open a support-ticket使用Cloudinary。

答案 1 :(得分:0)

对于这个问题的任何绊脚石,还要检查你的php版本。 Cloudinary PHP SDK需要php 5.4。

enter image description here