请输入您要查询的百科知识:

 

词条 php print
释义

定义和用法

print() 函数输出一个或多个字符串。

语法

print(strings)

参数 描述

strings 必需。发送到输出的一个或多个字符串。

提示和注释

注释:print() 函数实际上不是函数,所以您不必对它使用括号。

注释:print() 函数稍慢于 echo()。

例子 1

<?php
$str = "Who's John Adams?";
print $str;
print "<br />";
print $str."<br />I don't know!";
?>输出:

Who's John Adams? Who's John Adams? I don't know!

例子 2

<?php
print "This text spans multiple lines.";
?>输出:

This text spans multiple lines.

例子 3

<?php
$color = "red";
print "Roses are $color";
print "<br />";
print 'Roses are $color';
?>输出:

Roses are red Roses are $colorPHP String 函数

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2025/1/11 13:12:59