定义和用法
print() 函数输出一个或多个字符串。
注释:print() 函数实际不是一个函数,所以您不必对它使用括号。
提示:print() 函数比 echo() 速度稍慢。
语法
print(strings)
参数 | 描述 |
---|---|
strings | 必需。发送到输出的一个或多个字符串。 |
技术细节
返回值: | 总是返回 1。 |
---|---|
PHP 版本: | 4+ |
## demo
$test = 'test';
print $test;
echo "
";
$p = print $test;
show($p);
##输出
test
test
1