duanmei1536 2014-03-28 11:21
浏览 27
已采纳

打印php标签和变量赋值作为文本

Assume I have this text:

<?php

  $my_first_word = 'hi there';

  echo $my_first_word;

?>

And I want to print it out to the screen, only problem is when I put all the text inside a print"";

It doesn't actually print the php tags and etc, I want it to actually be outputted on the browser as text.

  • 写回答

4条回答 默认 最新

  • dongyu3659 2014-03-28 11:31
    关注

    as text:

    echo '<?php
    
    $my_first_word = \'hi there\';
    
    echo $my_first_word;
    
    ?>';
    

    as html:

    echo nl2br(htmlspecialchars('<?php
    
    $my_first_word = \'hi there\';
    
    echo $my_first_word;
    
    ?>'));
    

    Do note the use of ' for quoting (otherwise the variables would not be literals), as well as the therefore escaped ' char inside the string.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?