you can use
$obj->{'profile|title'}
Since you just use it as a dumb data store, you can also use it as an array
$arr = (array) $obj; $arr['profile|title'];
This would be more useful if you use a lot of values ββfrom this method or you need to iterate over it.
source share