heredoc用法:
$heredoc = <<< "LIST"
填写代码;
LIST;
nowdoc用法;
$nowdoc = <<<'LIST'
填写代码;
LIST;
两种函数用来在php中填写大段的HTML代码,heredoc自动解析“”并且可以解析变量,nowdoc可以自动解析‘’,但是不能解析变量。
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!