好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

php print是什么意思

<?php
$str = "Who's John Adams?";
print $str;
print "<br />";
print $str."<br />I don't know!";
?>
<?php
print "This text spans multiple lines.";
?>

输出:

This text spans multiple lines.

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

以上就是php print是什么意思的详细内容!

查看更多关于php print是什么意思的详细内容...

  阅读:54次