php基本数组问题

时间:2010-02-03 06:08:15

标签: php arrays doctrine

我无法从教义中获取最后一个插入ID的值。我做了一些研究,发现以下内容应该有效:

//save the store now
$store = new Store();
$store->url = $this->form_validation->set_value('website');
$store->save();
$store_id = $store->identifier();

echo print_r($store->identifier());

返回

Array ( [id] => 1000034 )

如何从数组中提取值(1000034)并将其设置在我可以在别处使用的变量中?

1 个答案:

答案 0 :(得分:5)

您的$store_id是一个关联数组,其中一个值由“id”键入,因此:

$id = $store_id['id'];