我正在使用新的Amazon ElasticTranscoder服务,并且是使用AWS-SDK的新手。我创建了一个成功的脚本来运行createJob
请求,将Amazon S3文件从一种格式转码为另一种格式。
问题是,我似乎无法访问请求发出时返回的响应$data
。我可以看到它,它包含我需要的信息,但是当我试图存储它时,我收到了这个错误:
Fatal error: Cannot access protected property Guzzle\Service\Resource\Model::$data
以下是我的要求:
<?php
// Include the SDK
require 'aws.phar';
use Aws\ElasticTranscoder\ElasticTranscoderClient;
// Setup the trancoding service tool(s)
$client = ElasticTranscoderClient::factory( array(
'key' => 'XXXXXXXXX',
'secret' => 'XXXXXXXXX',
'region' => 'us-east-1'
) );
// Create a new transcoding job
$file_name = '1362761118382-lqg0CvC1Z1.mov';
$file_name_explode = explode( '.', $file_name );
$webm_transcode_request = $client->createJob( array(
'PipelineId' => '1362759955061-7ad779',
'Input' => array(
'Key' => $file_name,
'FrameRate' => 'auto',
'Resolution' => 'auto',
'AspectRatio' => 'auto',
'Interlaced' => 'auto',
'Container' => 'auto',
),
'Output' => array(
'Key' => $file_name_explode[0] . '.webm',
'ThumbnailPattern' => $file_name_explode[0] . '-thumb-{resolution}-{count}',
'Rotate' => '0',
'PresetId' => '1363008701532-b7d529' // BenchFly MP4
)
) );
// Print the response data
echo '<pre>';
var_dump( $webm_transcode_request->data );
echo '</pre>';
?>
我一直在试图找到一些关于使用PHP和AWS SDK处理响应请求的文档,我非常感谢。
答案 0 :(得分:19)
您有两种选择:
使用toArray()
中“从Guzzle\Common\Collection
继承的方法”下列出的the docs方法。
e.g。
$webm_transcode_request->toArray();
只需直接访问$data
属性的索引,就好像它们是响应对象的索引一样。这是有效的,因为Guzzle\Service\Resource\Model
类实现了PHP的魔术ArrayAccess
接口,以便在$data
属性上进行类似数组的访问。
e.g。
$response = $ec2Client->describeInstances();
// Gets the value of the 'Reservations' key of the protected `$data` property
// of `$response`
var_dump($response['Reservations']);