Alexandre Passant wrote: > The json_decode method in PHP creates PHP objects, and attributes can > be retrieved using $name->attribute. > Yet, attribute cannot start with a @ > > So $object->@ won't work, but $object->uri will be OK. Attribute names can be anything in PHP (even NULL!) you use the $object->{'@context'} style to access non standard attribute names, although it's not quite as clean as $object->context that's for sure :) Best, NathanReceived on Sunday, 31 July 2011 14:12:35 GMT
This archive was generated by hypermail 2.3.1 : Tuesday, 26 March 2013 16:25:35 GMT