xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>PHP heredoc 实例 - 自学教程(runoops.com)</title>
</head>
<body>
<?php
$name="runoops";
$a= <<<EOF
"abc"$name
"123"
EOF;
// 结束需要独立一行且前后不能空格
echo $a;
?>
</body>
</html>