您现在的位置: 365建站网 > 建站教程 > PHP 教程 > PHP print() 函数

PHP print() 函数

此节有 242 人学习过     参与评论

实例

向输出写入文本:

<?php
print "I love Shanghai!";
?>

运行实例

定义和用法

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

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

提示:print() 函数比 echo() 稍慢。

语法

print(strings)
参数 描述
strings 必需。发送到输出的一个或多个字符串。

技术细节

返回值: 始终返回 1。
PHP 版本: 4+

更多实例

例子 1

输出字符串变量($str)的值:

<?php
$str = "I love Shanghai!";
print $str;
?>

运行实例

例子 2

输出字符串变量($str)的值,包含 HTML 标签:

<?php
$str = "I love Shanghai!";
print $str;
print "<br>What a nice day!";
?>

运行实例

例子 3

连接两个字符串变量:

<?php
$str1 = "I love Shanghai!";
$str2="What a nice day!";
print $str1 . " " . $str2;
?> 

运行实例

例子 4

输出数组的值:

<?php
$age=array("Bill"=>"60");
print "Bill Gates is " . $age['Bill'] . " years old.";
?>

运行实例

例子 5

输出文本:

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

运行实例

例子 6

单引号和双引号的区别。单引号将输出变量名称,而不是值:

<?php
$color = "red";
print "Roses are $color";
print "<br>";
print 'Roses are $color';
?>

运行实例

如对本文有疑问,请提交到交流论坛,广大热心网友会为你解答!! 点击进入论坛

发表评论 (242人查看0条评论)
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
昵称:
最新评论
------分隔线----------------------------
PHP 教程目录

快速入口

· 365软件
· 杰创官网
· 建站工具
· 网站大全

其它栏目

· 建站教程
· 365学习

业务咨询

· 技术支持
· 服务时间:9:00-18:00
365建站网二维码

Powered by 365建站网 RSS地图 HTML地图

copyright © 2013-2024 版权所有 鄂ICP备17013400号