<?php
$mytext = <<<EOF
test {
gl: 100;
mkd: 0;
sld: 0;
}
EOF;
echo $mytext;
?>
the output is :
test { aaa: black; bbb: yellow; ccc: red; }
and I want the output exactly how it's wrote inside the eof segments.
test {
gl: 100;
mkd: 0;
sld: 0;
}
Any idea ?
`'s or use ` – Phil Perry Feb 28 '14 at 14:39