输出一些文本:
<?php print "Hello world!"; ?>
运行结果:
Hello world!
print() 函数输出一个或多个字符串。
注释:print() 函数实际不是一个函数,所以您不必对它使用括号。
提示:print() 函数比 echo() 速度稍慢。
print(strings)
参数 | 描述 |
---|---|
strings | 必需。发送到输出的一个或多个字符串。 |
返回值: | 总是返回 1。 |
---|---|
PHP 版本: | 4+ |
输出字符串变量($str)的值:
<?php $str = "Hello world!"; print $str; ?>
运行结果:
Hello world!
输出字符串变量($str)的值,包含 HTML 标签:
<?php $str = "Hello world!"; print $str; print "<br>What a nice day!"; ?>
运行结果:
Hello world! What a nice day!
连接两个字符串变量:
<?php $str1="Hello world!"; $str2="What a nice day!"; print $str1 . " " . $str2; ?>
运行结果:
Hello world! What a nice day!
输出数组的值:
<?php $age=array("Peter"=>"35"); print "Peter is " . $age['Peter'] . " years old."; ?>
运行结果:
Peter is 35 years old.
输出一些文本:
<?php print "This text spans multiple lines."; ?>
运行结果:
This text spans multiple lines.
单引号和双引号的区别。单引号将输出变量名称,而不是值::
<?php $color = "red"; print "Roses are $color"; print "<br>"; print 'Roses are $color'; ?>
运行结果:
Roses are red Roses are $color
在线实例
字符集 & 工具
最新更新
站点信息
关注我们