动态Magento SOAP请求

时间:2015-11-17 08:38:50

标签: php magento soap

我想通过Magento PHP SOAP API更新Magento文章。

此请求正常:

$result = $soap->catalogProductUpdate($session_id, $res[0]['sku'], array(
    'price' => '69,99'
));

但我想做这样的事情:

$result = $soap->catalogProductUpdate($session_id, $res[0]['sku'], array(
    $_POST['t0'] => '69,99'
));

变量$_POST['t0']包含我要更新的字符串,在本例中为$_POST['t0'] = 'price'

但它不起作用。知道如何将后置变量用作数组键吗?

0 个答案:

没有答案