引号之间的 PHP 语句

发布于 2024-11-19 17:33:51 字数 205 浏览 0 评论 0原文

如何在 php 内部的引号之间放置 php 语句?

我想调用 str_replace(),第一个参数是一个字符串,它是我想要替换的 PHP 语句)。

该字符串为:

现在,如何将其放入引号中?是否可以?我只是希望将其视为字符串。

谢谢你!

How can I put a php statement between quotes, inside php?

I want to call str_replace(), and the first argument is a string that is a PHP statement, that I want to replace).

The string is: <?php echo $_GET['number'];?>

Now, how do I put that into quotes? Is it possible? I just want that to be treated as a string.

Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

软糖 2024-11-26 17:33:51

这就是你想做的全部吗?

echo '<?php echo $_GET["number"];?>';

我想我们有点困惑。

Is this all you're trying to do?

echo '<?php echo $_GET["number"];?>';

I think we're a little confused.

败给现实 2024-11-26 17:33:51

如果你想将确切的文本输出到 html 页面,

<?php
echo htmlentities('<?php echo $_GET["number"];?>');

我可能误解了你想要的内容......

If you want to output that exact text to an html page just do

<?php
echo htmlentities('<?php echo $_GET["number"];?>');

I may have misunderstood what you wanted though...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文