PHP 字符串 print()函数
PHP print()函数是一个重要的函数,用于输出一个或多个字符串。
注意:print()函数实际上不是一个函数,所以不需要使用括号。
语法
int print ( string $arg );
参数 | 描述 | 必需/可选 |
---|---|---|
string | 指定要发送输出的一个或多个字符串。 | 必需 |
示例1
<?php
str = "Hello PHP";
printstr;
?>
输出:
Hello PHP
示例2
<?php
str = "Hello PHP!";
printstr;
print "<br>It is Server Side Scripting Language";
?>
输出:
Hello PHP!
It is Server Side Scripting Language
示例3
<?php
str1="Hello PHP!";str2="PHP is server side scripting language";
print str1 . " " .str2;
?>
输出:
Hello PHP! PHP is server side scripting language
示例4
<?php
age=array("JOHN"=>"35");
print "JOHN is " .age['JOHN'] . " years old.";
?>
输出:
JOHN is 35 years old.