参数 | 描述 |
---|---|
strings | 必需。发送到输出的一个或多个字符串。 |
<?php $str = "Whos John Adams?"; print $str; print "<br />"; print $str."<br />I dont know!"; ?>
输出:
Whos John Adams? Whos John Adams? I dont know!
<?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
制作:
http://www.7di.net 生活网搜集整理 参考: http://www.w3school.com.cn/php/func_string_print.asp |