开发者

htmlentities variables not working

I am looking for a way i can use code snippets but safely insert them into a database and pull them back out.

I have the following piece off code.

    <?php $snippet = htmlentities("<?php

define ('EMOTICONS_DIR', '/images/emoticons/');

function BBCode2Html($text) {
    $text = trim($text);

    // BBCode [code]
?>"); ?>

<pre class="prettyprint">

<?php echo $s开发者_开发知识库nippet; ?>

</pre>

But when i try to run the code in the browser i get the following errors.

Notice: Undefined variable: text in C:\xampp\htdocs\prettycss\index.php on line 18

Notice: Undefined variable: text in C:\xampp\htdocs\prettycss\index.php on line 18

Notice: Undefined variable: text in C:\xampp\htdocs\prettycss\index.php on line 21

Which says to me the the htmlentities is not working on $ signs what is the best way around this ???

Thanks


What happens is that it tries to 'resolve' the "$text" in your string: you're using ", which means that any string is replaced as if it was a variable, which it isn't.

Escape all $ 's with a \, or use ' (but then you need to escape the ' ofcourse).

For instance:

<?php $snippet = htmlentities("<?php

define ('EMOTICONS_DIR', '/images/emoticons/');

function BBCode2Html(\$text) {
    \$text = trim(\$text);

// BBCode [code]
?>"); ?>
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜