如何使用 PHP 来使用和解析自定义用户输入变量 %var%?

发布于 2024-10-12 02:18:20 字数 158 浏览 3 评论 0原文

我想在我的网站中输入一些新闻,并输入一个像 %custom_heading% 这样的变量,然后让 PHP 将其替换为我设置的自定义标题,这允许我在任何我想要的地方输入它,我将如何去做呢?


更新:谢谢,这很有帮助:)现在已经在我的代码中了。

I want to enter some news into my website and enter a variable like %custom_heading% and get PHP to replace this with the custom heading I have set, this allows me to enter it in wherever I want, how would I go about doing this?


Update: Thanks this helped a lot :) Already in my code now.

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

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

发布评论

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

评论(1

╰◇生如夏花灿烂 2024-10-19 02:18:20

非常简单地在字符串上使用 str_replace...

$vars = array(
    'name' => 'Joe',
    'age' => 10
);

$str = 'Hello %name% you are %age% years old!';

foreach ($vars as $key => $value) {
    $str = str_replace('%' . $key . '%', $value, $str);
}

echo $str; // Hello Joe you are 10 years old!

Very simple use str_replace on the string...

$vars = array(
    'name' => 'Joe',
    'age' => 10
);

$str = 'Hello %name% you are %age% years old!';

foreach ($vars as $key => $value) {
    $str = str_replace('%' . $key . '%', $value, $str);
}

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