Possible Duplicate:
Reference - What does this symbol mean in PHP?
What is the name for the “<<<” operator?
I can infer what this is doing but I need to know how, and possible find some documentation.
The expression in the title <<<CSS
seems to set up a block of css to be inserted into a template. However there are no functions to strip the <<<CSS
from these text strings yet they do not appear. This leads me to believe that <<<
is not just a random marker but has special PHP meaning. Please help.
if(!empty($background['header_image'])){
$header_image = <<<CSS
background-image: url('{$background['header_image']}');
background-repeat: {$background['header_repeat']};
background-position: top {$background['header_position_x']};
background-attachment: scroll;
CSS;`