Skip to content

Instantly share code, notes, and snippets.

@tyx
Created October 27, 2010 08:24
Show Gist options
  • Save tyx/648666 to your computer and use it in GitHub Desktop.
Save tyx/648666 to your computer and use it in GitHub Desktop.
<?php
// updateObject de mon formulaire principal
var_dump($values);
/*
array
0 =>
array
'id' => string '233'
2 =>
array
'id' => string '234'
*/
var_dump($monObjet->toArray());
/*
array
0 =>
array
'id' => string '233'
1 =>
array
'id' => string '234'
*/
$this->doUpdateObject($values);
var_dump($monObjet->toArray());
/*
array
0 =>
array
'id' => string '233'
'new => false
1 =>
array
'id' => string '234'
'new' => false
2 =>
array
'id' => string '234'
'new' => true
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment