Home > Backend Development > PHP Tutorial > 这是什么写法

这是什么写法

WBOY
Release: 2016-06-23 14:28:17
Original
1065 people have browsed it

echo  ............
BLOCKCLASSSEL;
求解  这种写法是什么东西


回复讨论(解决方案)

输出字符串。。。。

function outputhtml(){        echo “<html>”;        echo “<head><title>php自学网首页</title></head>”;        echo “<body>首页内容</body>”;        echo “</html>;        }        function outputhtml()        {        echo <<<EOT        <html>        <head><title>php自学网首页</title></head>        <body>首页内容</body>        </html>        EOT;        }
Copy after login

$str =  ……
STR;
echo $str;

php定界符

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template