本文概述
通过使用语法, 我们可以通过PHP脚本显示HTML元素。
句法
<<<name of string
//content
name of string
例子1
<?php
echo <<<srcmini
welcome to the best tutorial site
srcmini;
?>
输出

例子2
另存为string.php

输出

来源:
https://www.srcmini02.com/29209.html
通过使用语法, 我们可以通过PHP脚本显示HTML元素。
<<<name of string
//content
name of string
<?php
echo <<<srcmini
welcome to the best tutorial site
srcmini;
?>
输出
另存为string.php
输出
来源:
https://www.srcmini02.com/29209.html