如何使用php从parse.com中检索图像

时间:2015-09-23 11:15:42

标签: php image parse-platform

我正在尝试获取已在解析数据库中的图像。在数组中,我获取所有获取的数据,包括图像URL,但当我试图回显该特定的URL时,它回显空白!  贝娄是代码

     $object = new ParseQuery("billComputing");
     $getdata=$object->descending("updatedAt");
     $results = $object->find();
     $data=$results[0];  
     echo "<pre>";
     print_r($results);
     echo "signature".$sign=$data->get('Signature["url"]');

在print_r()中 - 我得到了这个

[Signature] => Parse\ParseFile Object
                        (
                            [name:Parse\ParseFile:private] => tfss-8a4dbd13-7e16-4efc-abcf-08e901924f49-sign
                            [url:Parse\ParseFile:private] => http://files.parsetfss.com/864d47af-9eac-4b75-ae30-17b7352d16ca/tfss-8a4dbd13-7e16-4efc-abcf-08e901924f49-sign
                            [data:Parse\ParseFile:private] => 
                            [mimeType:Parse\ParseFile:private] => 
                        )

我无法显示网址。提前获得帮助。

1 个答案:

答案 0 :(得分:1)

试试这个:

 $object = new ParseQuery("billComputing");
 $getdata=$object->descending("updatedAt");
 $results = $object->find();
 $data=$results[0];  
 echo "<pre>";
 print_r($results);
 $file = $data->get('imageColumnName');
 $imageURL = $file->getURL();
 // you will get image url in $imageURL variable.