Heim >Backend-Entwicklung >PHP-Tutorial >php中heredoc的方法(EOF)详解

php中heredoc的方法(EOF)详解

WBOY
WBOYOriginal
2016-07-25 08:58:22969Durchsuche
本文介绍下,php中有关heredoc的用法,可以输出长段的文档内容,有的朋友参考下吧。

Heredoc技术,在大多数的编程实例中,一般只介绍了一种Perl风格的字符串输出技术。 现在很多的php程序中,都巧妙的使用heredoc技术,部分实现界面与代码的准分离,其中phpwind模板就是典型的应用例子。

例如:

<?php 
$name = '脚本 学堂';
print <<<EOT
<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
<title>bbs.it-home.org</title> 
</head> 
<body> 
<!--12321--> 
Hello,$name! 
</body> 
</html>
EOT;
?>

说明: 1,以

<?php
$v=2;
$a= <<<EOF
"abc"$v
"123"
EOF;
echo $a; //结果连同双引号一起输出:"abc"2 "123"
?>

3,heredoc常用在输出包含大量html语法d文档时。 比如:函数outputhtml()要输出HTML的主页。

可以有两种写法。很明显第二种写法比较简单和易于阅读。

<?php
function outputhtml(){
echo "<html>";
echo "<head><title>脚本 学堂 主页</title></head>"; 
echo "<body>主页内容</body>";
echo "</html>;
}
function outputhtml()
{
echo <<<EOT
   <html>
   <head><title>脚本 学堂 主页</title></head>
   <body>主页内容</body>
   </html>
EOT;
}
outputhtml();
?>


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn