-2

请问,如何将php打印为html文本?

例如:

我有这个 php 行

if(defined('LOAD_VARS') AND LOAD_VARS === TRUE)

我想将其打印为 html 文本

所以输出将是

if(defined('LOAD_VARS') AND LOAD_VARS === TRUE)

我试过这个

<textarea style="width:600px; height:30px;">if(defined('LOAD_VARS') AND LOAD_VARS === TRUE)</textarea>

但它不起作用并显示错误

请问我该怎么做?

如何

4

2 回答 2

4

你的问题不是很清楚,但这里有:

在输出任何内容之前关闭 PHP 标签,或者简单地使用print()or echo

示例 1:

<?php
print('if(defined(\'LOAD_VARS\') AND LOAD_VARS === TRUE)');
?>

示例 2

<?php
// Your code that you want to be run.
?>

<pre>if(defined('LOAD_VARS') AND LOAD_VARS === TRUE)</pre>
于 2013-01-26T23:55:31.653 回答
1

看一下highlight_string

$source = "if(defined('LOAD_VARS') AND LOAD_VARS === TRUE)";
echo highlight_string($source, true);
于 2013-01-26T23:55:16.120 回答