0
我無法從doctrine獲取最後一個插入標識的值。我做了一些研究,我發現下面應該工作:php基本數組問題
//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)從數組中,並設置一個變量我可以在其他地方使用?