Php/func string print

来自菜鸟教程
跳转至:导航、​搜索

PHP print()函数

❮PHP字符串参考

在输出中写一些文本:

<?php 
print "Hello world!"; 
?>

定义和用法

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

注意: print()函数实际上不是函数,因此不需要将括号与它一起使用。

Tip: print()函数比 回声()

.

句法

print(strings)

参数值

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

技术细节

返回值: 总是返回1
PHP版本: 4+

更多例子

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

<?php

$str = "Hello world!";

 print $str;

?>

将字符串变量($ str)的值写入输出,包括HTML标记:

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

将两个字符串变量连接在一起:

<?php
$str1="Hello world!";
$str2="What a nice day!";

print $str1 . " " . $str2;
?> 

将数组的值写入输出:

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

在输出中写一些文本:

<?php

 print "This text

spans multiple

lines.";

?> 

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

<?php

$color = "red";

 print "Roses are $color";

 print "<br>";

 print 'Roses are $color';

?>

❮PHP字符串参考