heredoc 语法用于在 PHP 中声明字符串。本教程描述并演示了在 php 中使用 heredoc 语法。 PHP Heredoc 语法 在 PHP 中,程序员大多使用两种方法来声明字符串
heredoc 语法用于在 PHP 中声明字符串。本教程描述并演示了在 php 中使用 heredoc 语法。
在 PHP 中,程序员大多使用两种方法来声明字符串,一种是用' '
单引号,另一种是用""
双引号,如下所示。
$DemoString = 'Demo String';
$DemoString = "Demo String";
heredoc 语法是在 PHP 中声明字符串的另一种方式。heredoc 语法至少需要三行代码,它在开头使用 <<<
运算符来声明字符串变量。
此方法的语法是:
$DemoString = <<< identifier
// string
// string
// string
identifier;
标识符
用于语法的开头和结尾。你可以在此处使用任何词来代替标识符
。
以下是使用 heredoc 语法时的一些要点。
让我们尝试一个例子。
<?php
$DemoString = <<<Jiyik
Hello This is the Employee List from Delftstack.com<br>
1. Jack<br>
2. Michelle<br>
3. Jhonny<br>
4. Dana <br>
5. Natasha.
Jiyik;
echo $DemoString;
?>
上面的代码使用带有标识符 Delftstack
的 heredoc 语法。见输出:
Hello This is the Employee List from Delftstack.com
1. Jack
2. Michelle
3. Jhonny
4. Dana
5. Natasha.
这是另一个带有 html 标记和其他变量的示例。
<?php
$SiteName = "Jiyik";
$Message = "This is the best tutorials site for programmers";
$Print = <<<heredocDelftstack
<div >
<div >
<h1>{$SiteName}</h1>
<p>{$Message}</p>
</div>
</div>
heredocDelftstack;
echo $Print;
?>
上面的代码将以 HTML 形式显示数据。
--结束END--
本文标题: PHP Heredoc 语法
本文链接: https://www.lsjlt.com/news/569057.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0