在.php文件中使用<! - ?php作为纯文本? - >

时间:2014-09-10 14:19:14

标签: php

我有这个.php:

<?php

//some code

?>
Here goes the text that is plain text.
Whenever you use <?php in a .php file it precedes the php code that will be parsed and interpreted by php.

您可能已经猜到,此文件出错并拒绝正确运行。我不想使用HTML实体,因为结果文件不用作HTML。除了将字符串 <?php 存储在变量中之外,我有哪些选择?

1 个答案:

答案 0 :(得分:4)

使用字符串文字以编程方式生成它。

<?php echo "<?php"; ?>