PHP的print函数,姑且说是函数吧啊。可以使用在PHP 4, PHP 5的环境中。
\n
print函数的作用就是输出一个字符串。使用方法:
int print ( string arg )
\n
print() 是一个语言结构而非函数,因此它无法被变量函数调用。 请看下面的演示:)
\n
<?php
print(“Hello World”);
\n
print “print() also works without parentheses.”;
\n
print “This spans
multiple lines. The newlines will be
output as well”;
\n
print “This spans\\nmultiple lines. The newlines will be\\noutput as well.”;
\n
print “escaping characters is done \\”Like this\\”.”;
\n
// You can use variables inside of a print statement
foo = “foobar”;
bar = “barbaz”;
\n
print “foo is foo”; // foo is foobar
\n
// You can also use arrays
bar = array(“value” => “foo”);
\n
print “this is {bar[\'value\']} !”; // this is foo !
\n
// Using single quotes will print the variable name, not the value
print ‘foo is foo’; // foo is foo
\n
// If you are not using any other characters, you can just print variables
print foo; // foobar
\n
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;
?>
\n
注意: 由于这是一个语言结构而非函数,因此它无法被变量函数调用。
\n