PHP中的print函数简介
PHP中的print函数简介
PHP的print函数,姑且说是函数吧啊。可以使用在PHP4,PHP5的环境中。
print函数的作用就是输出一个字符串。使用方法:
intprint(stringarg)
print()是一个语言结构而非函数,因此它无法被变量函数调用。请看下面的演示:)
<?php
print("HelloWorld");
print"print()alsoworkswithoutparentheses.";
print"Thisspans
multiplelines.Thenewlineswillbe
outputaswell";
print"Thisspans\nmultiplelines.Thenewlineswillbe\noutputaswell.";
print"escapingcharactersisdone\"Likethis\".";
//Youcanusevariablesinsideofaprintstatement
foo="foobar";
bar="barbaz";
print"fooisfoo";//fooisfoobar
//Youcanalsousearrays
bar=array("value"=>"foo");
print"thisis{bar['value']}!";//thisisfoo!
//Usingsinglequoteswillprintthevariablename,notthevalue
print'fooisfoo';//fooisfoo
//Ifyouarenotusinganyothercharacters,youcanjustprintvariables
printfoo;//foobar
print<<<END
Thisusesthe"heredocument"syntaxtooutput
multiplelineswithvariableinterpolation.Note
thattheheredocumentterminatormustappearona
linewithjustasemicolonnoextrawhitespace!
END;
?>
注意:由于这是一个语言结构而非函数,因此它无法被变量函数调用。