Home > Article > Backend Development > PHP的语法,<<<xml是什么意思?
$template =
<code><tousername></tousername> <fromusername></fromusername> <createtime>%s</createtime> <msgtype></msgtype> <content></content> <funcflag>%s</funcflag></code>
XML;
可以给我解释下,这里的
$template =
<code><tousername></tousername> <fromusername></fromusername> <createtime>%s</createtime> <msgtype></msgtype> <content></content> <funcflag>%s</funcflag></code>
XML;
可以给我解释下,这里的
[CODE_LITE]EOT;[/CODE_LITE]
中间的文档直接输出,一个比较好理解的说法是“一个多行的echo ”。
优点是输出大段HTML或者xml等 方便,不需要转义,而且可以引用变量。
heredoc
http://php.net/manual/en/language.types.string.php#language.types.string.syntax.heredoc
定界符。。。
看着像是定义字符串的一种