PHP print() 函数

返回上一级

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

( PHP >= 4 )

函数原型

print( strings )

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

print() 函数比 echo() 速度稍慢

参数

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

返回值

总是返回 1

范例

输出一些文本

<?php
print "Hello world!";

运行范例 »

运行以上 PHP 范例,输出结果如下

Hello world!

范例 2

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

<?php
$str = "Hello world!";
print $str;

运行范例 »

运行以上 PHP 范例,输出结果如下

Hello world!

范例 3

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

<?php

$str = "Hello world!";
print $str;
print "<br>What a nice day!";

运行范例 »

运行以上 PHP 范例,输出结果如下

Hello world!
What a nice day!

范例 4

连接两个字符串变量

<?php

$str1="Hello world!";
$str2="What a nice day!";
print $str1 . " " . $str2;

运行范例 »

运行以上 PHP 范例,输出结果如下

Hello world! What a nice day!

范例 5

输出数组的值

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

运行范例 »

运行以上 PHP 范例,输出结果如下

Peter is 35 years old.

范例 6

输出一些文本

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

运行范例 »

运行以上 PHP 范例,输出结果如下

This text spans multiple lines.

范例 7

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

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

运行范例 »

运行以上 PHP 范例,输出结果如下

Roses are red
Roses are $color

返回上一级

PHP 5 函数参考手册

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.