我需要一些STD类对象的帮助。
$checking_w_products = explode("-",$orderline_val->products[$x]->sku);
if(count($checking_w_products)>1)
{
if($checking_w_products[0]=="W")
{
$orderline_val->products[$x] = (object) array(
'sku '=>$checking_w_products[1]
);
}
else
{
$orderline_val->products[$x] = (object) array(
'sku '=>'ahmad'
);
}
}
echo $orderline_val->products[$x]->sku;
die;
我正在尝试更新产品sku但不知何故它没有这样做..它只是保留了
的价值 $orderline_val->products[$x]->sku
因为没有更新它。我使用了[this]:How to set attributes for stdClass object at the time object creation示例,但没有效果......
如果可以,请指导我如何更新
的值$orderline_val->products[$x]->sku;
由于