What does <? php echo (“
”); … echo(“
”); ?> mean?

后端 未结 5 1754
自闭症患者
自闭症患者 2021-02-13 00:22

The question is the tag

 

I\'ve seen one script I am working on, uses it:

echo (\"

\");

.... .

5条回答
  •  时光取名叫无心
    2021-02-13 01:03

    The PHP function echo() prints out its input to the web server response.

    echo("Hello World!");
    

    prints out Hello World! to the web server response.

    echo("");
    

    prints out the tag to the web server response.

    echo do not require valid HTML tags. You can use PHP to print XML, images, excel, HTML and so on.

    is not a HTML tag. Is is a valid XML tag, but since I don't know what page you are working in, i cannot tell you what it is. Maybe it is the root tag of a XML page, or a miswritten

     tag.

提交回复
热议问题