我试图使用AWS Rekognition
获取照片中的所有标签,但作为回报,我得到了一个私有对象,其中包含包含标签的数组。
我的问题是:如何公开对象以便可以访问它?
我的代码:
<?php
$result = $client->detectLabels([
'Image' => [
'Bytes' => file_get_contents("Photo.jpg"),
],
'MinConfidence' => 90,
]);
print_r($result);
输出是一个像这样的私有对象:
Aws\Result Object
(
[data:Aws\Result:private] => Array
(
[Labels] => Array
(
[0] => Array
(
[Name] => Text
[Confidence] => 99.841453552246
...