RE: [PHP] using extract inside an object

2002-06-21 Thread phpsurf
Re: [PHP] using extract inside an object > > > Try this > $a = array('one'=>1, 'two'=>2 ); > $b = (object)$a; > > > I have the following array: > > Array > > ( > > [one] => 1 > > [two] => 2 > > ) >

Re: [PHP] using extract inside an object

2002-06-21 Thread Remy Dufour
Try this $a = array('one'=>1, 'two'=>2 ); $b = (object)$a; > I have the following array: > Array > ( > [one] => 1 > [two] => 2 > ) > that I would like to transform into the following object > stdClass Object > ( > [one] => 1 > [two] => 2 > ) > > any idea ? -- PHP General Maili

[PHP] using extract inside an object

2002-06-21 Thread phpsurf
Hi does anyone know how to use the function extract inside an object, so as the created variables become attributes of the object ? a little example to be more explicit :) I have the following array: Array ( [one] => 1 [two] => 2 ) that I would like to transform into the following obje