Re: [PHP] Array to Object

2007-02-13 Thread Marc Weber
On Tue, Feb 13, 2007 at 12:02:10PM +0200, Eli wrote: > Hi, > > Having this array: > $arr = array( > 'my var'=>'My Value' > ); > Notice the space in 'my var'. > > Converted to object: > $obj = (object)$arr; > > How can I access $arr['my var'] in $obj ? This works but there ma

[PHP] Array to Object

2007-02-13 Thread Eli
Hi, Having this array: $arr = array( 'my var'=>'My Value' ); Notice the space in 'my var'. Converted to object: $obj = (object)$arr; How can I access $arr['my var'] in $obj ? -thanks! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.p

Re: [PHP] array to object conversion

2005-12-15 Thread Jochem Maas
Cyril wrote: Is there any way of converting an array to an object of a type/class other than stdClass? write a function? - bare in mind this is just an idea - it would need more work to make it usuable (and the code is completely untested): class Test {} function castFromArray($class, $arr) {

[PHP] array to object conversion

2005-12-14 Thread Cyril
Is there any way of converting an array to an object of a type/class other than stdClass? I have been using the new PDO system and have experimented with fetching rows with PDO::FETCH_CLASS I would quite like to do the same with a plain array. Any comments appreciated. Cyril -- PHP General Mailin