转义字符

发布于 2024-08-20 18:34:20 字数 385 浏览 2 评论 0原文

我有这个功能:

<?php
function getmypost($number)
    {
        query_posts('p=1828');
        while (have_posts()) : the_post();
        the_title('<h1>', '</h1>');
        the_content();
        endwhile;
    }
?>

我需要将 1828 作为变量 我已经尝试过这个:

    query_posts('\'p='. $number .'\'');

但它不起作用。这样做的正确方法是什么?

I have this function :

<?php
function getmypost($number)
    {
        query_posts('p=1828');
        while (have_posts()) : the_post();
        the_title('<h1>', '</h1>');
        the_content();
        endwhile;
    }
?>

I need to make the 1828 as a variable
I have tried this:

    query_posts('\'p='. $number .'\'');

But it does not work. What would be the right way to do this?

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

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

发布评论

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

评论(2

扛起拖把扫天下 2024-08-27 18:34:21

如果我理解正确的话你

query_posts('p='.$number);

应该工作。

如果您需要在字符串中使用单引号 ' ,您可以转义 '

query_posts('p=\''.$number.'\'');

或使用双引号(更优雅,您可以直接将变量放入。Dominik 已经建议了这在他的回答中)

query_posts("p='$number'");

If I understand you correctly

query_posts('p='.$number);

should work.

If you need a single quote ' in the string you'd escape the '

query_posts('p=\''.$number.'\'');

or using double quotes (more elegant, and you can put the variable straight in. Dominik already suggested this in his answer)

query_posts("p='$number'");
百思不得你姐 2024-08-27 18:34:21

你可以使用

query_posts("'p=$number'");

You could use

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