So, I'm modifying an example script and it's got a section -
$SOAPrequest = <<< End_Of_Quote
..lots of lines basically writing xml for output to a gateway..
End_Of_Quote;
I assume this is a shorthand I've never come across that basically allows string definition over many lines and without the worry of escaping double quotes (at least that's what it appears to me to be). However, everytime I try to run the script, I get an unexpected $end error - is the above actual PHP? Or am I missing something? 'Cause everything is actually closed (all loops, functions, etc.) and if I comment out all the lines refered to above, the script doesn't throw an error.