I have a piece of code similar to the following which is returning errors.
print <<<EOF
$obj->values["field"];
EOF;
Is there anyway (notation?) to get this to print without assigning it to a temporary variable first? I think the problem stems from the quotation marks defining the array field while within the print statement.