个性化阅读
专注于IT技术分析

PHP Heredoc语法

本文概述

通过使用语法, 我们可以通过PHP脚本显示HTML元素。

句法

<<<name of string
	//content
name of string

例子1

<?php
	echo <<<srcmini
	welcome to the best tutorial site
srcmini;
?>

输出

PHP Heredoc语法

例子2

另存为string.php

PHP Heredoc语法

输出

PHP Heredoc语法

赞(0)
未经允许不得转载:srcmini » PHP Heredoc语法

评论 抢沙发

评论前必须登录!