Accessing Class Properties with Spaces Accessing Class Properties with Spaces codeigniter codeigniter

Accessing Class Properties with Spaces


You can do it this way:

$object->{'Date Found'}


have you tried

$property = 'Date Found';$object->{$property};

Or simply

$object->{'Date Found'};


try

$var="Date Found"; $this->$var

But I doubt that much you can have spaces in class properties names in php