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

后端 未结 3 2048
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-13 00:28

The question is the tag

 

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

echo (\"

\");

.... .

3条回答
  •  暖寄归人
    2021-02-13 01:12

    I think you're talking about

    . element is displayed in a fixed-width font, and it preserves both spaces and line breaks.

    try printing an array with a **

    ** and whitout **
    **

    $arr = array(1, 2, 3);
    
    echo '
    ';
    print_r($arr);
    echo '
    '; print_r($arr);

提交回复
热议问题