PHP的print函数
2009-05-30 12:42:58 作者:php编程 来源:网络安全网 浏览次数:0 网友评论 0 条
PHP的print函数,姑且说是函数吧啊。可以使用在PHP 4, PHP 5的环境中。
print函数的作用就是输出一个字符串。使用方法: int print ( string arg )
print() 是一个语言结构而非函数,因此 ...
PHP的print函数,姑且说是函数吧啊。可以使用在PHP 4, PHP 5的环境中。
print函数的作用就是输出一个字符串。使用方法:
int print ( string arg )
print() 是一个语言结构而非函数,因此它无法被变量函数调用。 请看下面的演示:)
<?php
print("Hello World");
print "print() also works without parentheses.";
print "This spans
multiple lines. The newlines will be
output as well";
print "This spans multiple lines. The newlines will be output as well.";
print "escaping characters is done \"Like this\".";
// You can use variables inside of a print statement
foo = "foobar";
bar = "barbaz";
print "foo is foo"; // foo is foobar
// You can also use arrays
bar = array("value" => "foo");
print "this is {bar['value']} !"; // this is foo !
// Using single quotes will print the variable name, not the value
print 'foo is foo'; // foo is foo
// If you are not using any other characters, you can just print variables
print foo; // foobar
print <<<END
This uses the "here document" syntax to output
multiple lines with variable interpolation. Note
that the here document terminator must appear on a
line with just a semicolon no extra whitespace!
END;
?>
注意: 由于这是一个语言结构而非函数,因此它无法被变量函数调用。
PHP的print函数是www1098t.com的会员在php编程最新发表的,同时也欢迎你就PHP的print函数提问.欢迎来到我们的服务器编程网站查询函数的文章.相关文章
[错误报告] [推荐] [收藏] [打印] [关闭] [返回顶部]


已有