在php中动态创建多维数组
这可能是一个简单的问题,我对 php、亚马逊很陌生 我想批量放入我的 SDB 数据库。我从亚马逊下载了 php-sdb sdk 并成功完成。
$bPut = $sdb->batch_put_attributes($domineName, array(
'ItemOne' => array(
'Company' => 'a',
),
'ItemTwo' => array(
'Company' => 'a',
),
'ItemThree' => array(
'Company' => 'a',
)
), true, null);
它工作正常。现在我想让数组(第二个参数)动态化,即我想从 SDB 数据库创建 itemOne,ItemTwo,ItemThree ...,我使用 $key = implode($row['测试']);
但我无法成功创建多维数组>我该怎么做。请帮忙
It may be simple question ,i am fresh to php,amazon
I want to do batch put to my SDB database. I download s php-sdb sdk from amazon and did it successfully.
$bPut = $sdb->batch_put_attributes($domineName, array(
'ItemOne' => array(
'Company' => 'a',
),
'ItemTwo' => array(
'Company' => 'a',
),
'ItemThree' => array(
'Company' => 'a',
)
), true, null);
its works fine.Now I want to make the array (the second parameter) dynamic ie I want to make itemOne,ItemTwo,ItemThree ... from SDB database , I did it using $key = implode($row['test']);
But I am fail to create a multidimensional array successfully>how can I do it.Please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这:
会给你这个:
然后你可以像这样使用它:
This:
will give you this:
And then you can use it like so:
您可以使用SDB Explorer查看和管理上传的数据。在即将推出的新版本中,SDB Explorer 将支持批量上传。您将能够在并行线程中上传大数据。
http://www.sdbexplorer.com/
You can view and manage your uploaded data using SDB Explorer. In new upcoming version SDB Explorer will support bulk upload. You will be able to upload your large data in parallel threads.
http://www.sdbexplorer.com/