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 may be much better ways.

$n='my var';
echo ($obj->$n);

Marc

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to