在php中动态创建多维数组

发布于 2024-11-14 03:43:00 字数 492 浏览 2 评论 0原文

这可能是一个简单的问题,我对 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

递刀给你 2024-11-21 03:43:00

这:

$items['ItemOne']['Company'] = 'a';
$items['ItemTwo']['Company'] = 'a';
$items['ItemThree']['Company'] = 'a';

会给你这个:

array(
  'ItemOne' => array(
    'Company' => 'a'
  ),
  'ItemTwo' => array(
    'Company' => 'a'
  ),
  'ItemThree' => array(
    'Company' => 'a'
  )
);

然后你可以像这样使用它:

$bPut = $sdb->batch_put_attributes($domineName, $items), true, null);

This:

$items['ItemOne']['Company'] = 'a';
$items['ItemTwo']['Company'] = 'a';
$items['ItemThree']['Company'] = 'a';

will give you this:

array(
  'ItemOne' => array(
    'Company' => 'a'
  ),
  'ItemTwo' => array(
    'Company' => 'a'
  ),
  'ItemThree' => array(
    'Company' => 'a'
  )
);

And then you can use it like so:

$bPut = $sdb->batch_put_attributes($domineName, $items), true, null);
节枝 2024-11-21 03:43:00

您可以使用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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文