04-23-2008, 03:26 PM
|
#5 (permalink)
|
|
is cute and cuddly
Join Date: Mar 2008
Location: Vegas, Baby
Posts: 963
Thanks: 31
|
The convention is that any string you use after the <<< is the same string you need to use to close it. So
PHP Code:
$szString = <<<EOF
<data>
EOF;
will work exactly the same as
PHP Code:
$szString = <<<Skinnymarinkydinkydink
<data>
Skinnymarinkydinkydink;
-m
|
|
|
|