我在php特定论坛上多次问过这个问题,但没有回复。基本上我使用的是codeigniter和一个名为datamapper的对象关系映射器。实例化对象时,它将数据库表存储为对象,将字段存储为属性。我试图比较两个对象的属性,以确定要删除哪些记录。基本上我有这样的事情:
http://blog.jeremymartin.name/2008/02/easy-multi-select-transfer-with-jquery.html#
我已经成功创建了我的添加功能。但是现在我在使用编辑功能。用户可能想要删除与类别相关联的父母或向该类别添加新父母。所以我需要考虑到这一点并相应地更新categories_related_categories连接表。
但是当我尝试比较foreach循环中的对象属性时,它会迭代内部循环两次并重复属性:
public function update(){
$vanity_url = new VanityUrl();
$vanity_url->where('user_id',$this->current_user()->id)->get();
$zones = $this->input->post('zones');
$zone = new Zone();
$zone->where_in('name', $zones)->get();
$subcategory = new Category();
$subcategory->where('id',$this->uri->segment(4))->get();
$old_parents = new Category();
$old_parents = $subcategory->related_category->get();
$unneeded_ids = array();
if(!$this->input->post('catupload')){
if($subcategory->save($zone->all)){
redirect("blogs/$vanity_url->url/categories");
}
else {
echo "Error occurred. Please try again.";
}
}
else {
$new_parents = new Category();
$controller = $this->input->post('catupload');
$new_parents->where_in('controller',$controller)->get();
foreach($new_parents as $new){
foreach($old_parents as $old){
if($new->id != $old->id){
array_push($unneeded_ids, $old->id);
}
}
}
$subcategory->delete($subcategory->related_category->where_in('id',$unneeded_ids)->get());
if($subcategory->save(array($zone->all,$new_parents->all))){
$this->session->set_flashdata('flash_message', 'The category has been successfully updated.');
redirect("blogs/$vanity_url->url/categories");
}
}
}
因此,我通过抓取与用户选择的内容不匹配的ID并删除相关记录来删除用户不再需要的任何关系。
问题在于:
array(4) { [0]=> int(126) [1]=> int(127) [2]=> int(126) [3]=> int(127) }
应该是这样的,因为没有办法可以复制id:
array(2) {[0]=> int(126) [1]=> int(127)}
感谢您的回复。
答案 0 :(得分:0)
我没有测试过,但你可以使用:
foreach($new_parents as $new){
foreach($old_parents as $old){
if($new->id != $old->id && !in_array($old->id, $unneeded_ids){
array_push($unneeded_ids, $old->id);
}
}
}
..检查id是否已列在数组中?
答案 1 :(得分:0)
如果要在数组中存储唯一元素,请将其用作关联映射:将元素用作键。
也就是说,如果要将元素$id
(整数)存储在数组$arr
中,而不是
array_push($arr, $id );
做的:
$arr[$id] = $id
或
$arr[$id] = 1; // or whatever
之后,您可能需要array_keys