Go homepage(回首页) Upload pictures (上传图片) Write articles (发文字帖)
The author:(作者)归海一刀published in(发表于) 2014/2/17 7:38:34 PHP的print函数_[PHP教程]
PHP的print函数,姑且说是函数吧啊。可以使用在PHP 4, PHP 5的环境中。
print函数的作用就是输出一个字符串。使用方法: int print ( string arg )
print() 是一个语言结构而非函数,因此它无法被变量函数调用。 请看下面的演示:)
print("Hello World");
print "print() also works without parentheses.";
print "This spansmultiple lines. The newlines will be output as well";
print "This spans\nmultiple lines. The newlines will be\noutput as well.";
print "escaping characters is done \"Like this\".";
// You can use variables inside of a print statementfoo = "foobar";bar = "barbaz";
print "foo is foo"; // foo is foobar
// You can also use arraysbar = array("value" => "foo");
print "this is {bar['value']} !"; // this is foo !
// Using single quotes will print the variable name, not the valueprint 'foo is foo'; // foo is foo
// If you are not using any other characters, you can just print variablesprint foo; // foobar
print <<This uses the "here document" syntax to outputmultiple lines with variable interpolation. Notethat the here document terminator must appear on aline with just a semicolon no extra whitespace!END;?>
注意: 由于这是一个语言结构而非函数,因此它无法被变量函数调用。
赞