I've stumbled across some code that looks like it's alternate syntax for assigning something into a variable in PHP.
$VSWTags = <<<VSW
BUNCHOFHTMLANDSTUFFHERE
VSW;
This is in a Drupal site we have here at work, and I searched on PHP.net for the VSW
and for the <<<
I couldn't find anything. When I played with it in the console I saw that it basically is just support for bare words or something of that nature?
php > $s = <<<VSW <<< > I dont know what this is doing
<<< > but its cool
<<< > VSW;
php > print $s;
I dont know what this is doing
but its cool
php >
Does anyone know where the documentation is for this or what it's called?