$foo = 'bar';// Nowdoc字符块,<<<后的标识要加单引号$now = <<<'NOW' I'm now, $foo!NOW;// Heredoc字符块,<<<后的标识不加单引号$here = <<<HERE I'm here, $foo!HERE;输出的结果是:I'm now, $foo!I'm here, bar!