$items .= <<<EOD
{
"s": "0",
"f": "{$chat['from']}",
"m": "{$chat['message']}"
},
EOD;
is there any equivalent type method in jsp?
$items .= <<<EOD
{
"s": "0",
"f": "{$chat['from']}",
"m": "{$chat['message']}"
},
EOD;
is there any equivalent type method in jsp?
The notation is called heredoc also know as here-doc.
AFAIK, not possible in jsp, but there are rumors about some hacks that can enable it.