PHP print() 函数
实例
向输出写入文本:
<!DOCTYPE html>
<html>
<body>
<?php
print "我爱上海!";
?>
</body>
</html>
定义和用法
print()
函数输出一个或多个字符串。
注释:print() 函数实际不是一个函数,所以您不必对它使用括号。
提示:print() 函数比 echo() 稍慢。
语法
print(strings)
参数 | 描述 |
---|---|
strings | 必需。发送到输出的一个或多个字符串。 |
技术细节
返回值: | 始终返回 1。 |
PHP 版本: | 4+ |
更多实例
例子 1
输出字符串变量($str)的值:
<!DOCTYPE html>
<html>
<body>
<?php
$str = "我爱上海!";
print $str;
?>
</body>
</html>
例子 2
输出字符串变量($str)的值,包含 HTML 标签:
<!DOCTYPE html>
<html>
<body>
<?php
$str = "我爱上海!";
print $str;
print "<br>真是美好的一天!";
?>
</body>
</html>
例子 3
连接两个字符串变量:
<!DOCTYPE html>
<html>
<body>
<?php
$str1 = "我爱上海!";
$str2="真是美好的一天!";
print $str1 . " " . $str2;
?>
</body>
</html>
例子 4
输出数组的值:
<!DOCTYPE html>
<html>
<body>
<?php
$age=array("Bill"=>"60");
print "Bill Gates is " . $age['Bill'] . " years old.";
?>
</body>
</html>
例子 5
输出文本:
<!DOCTYPE html>
<html>
<body>
<?php
print "This text
spans multiple
lines.";
?>
</body>
</html>
例子 6
单引号和双引号的区别。单引号将输出变量名称,而不是值:
<!DOCTYPE html>
<html>
<body>
<?php
$color = "red";
print "Roses are $color";
print "<br>";
print 'Roses are $color';
?>
</body>
</html>