str_replace 不适用于 foreach

发布于 2024-12-11 17:32:27 字数 436 浏览 0 评论 0原文

我的代码:

$str = array(
        '{$string1}' => 'anything2',
    '{$string2}' => 'something1',
    '{$string3}' => '...'
);

$final = "";
$text = $_POST['content'];
foreach( $str as $key => $val ) {
      $final = str_replace($key, $val, $text);
}

我的 $text ofc。本身具有 {string1}{string2}{string3} ,但它不会将其替换为数组中给定的值。

为什么它不工作?

My code:

$str = array(
        '{$string1}' => 'anything2',
    '{$string2}' => 'something1',
    '{$string3}' => '...'
);

$final = "";
$text = $_POST['content'];
foreach( $str as $key => $val ) {
      $final = str_replace($key, $val, $text);
}

My $text ofc. has {string1} , {string2} and {string3} itself, but it doesn't replace it with the values given in the array.

Why its not working?

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

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

发布评论

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

评论(3

甜宝宝 2024-12-18 17:32:27

此代码完全满足您的需要(没有任何额外的循环):

$final = strtr($_POST['content'], $str);

This code does exactly what you need (without any extra loops):

$final = strtr($_POST['content'], $str);
混浊又暗下来 2024-12-18 17:32:27

使用

 $final = str_replace('{'.$key.'}', $val, $text);

参考:http://php.net/manual/en/function.str-替换.php

use

 $final = str_replace('{'.$key.'}', $val, $text);

Ref : http://php.net/manual/en/function.str-replace.php

苍暮颜 2024-12-18 17:32:27

也许不同的编码,试试这个:

$text = utf8_decode($_POST['content']);// 或 utf8_encode

before循环;

祝你好运!

Maybe the different enconding, try this:

$text = utf8_decode($_POST['content']);// or utf8_encode

before loop;

Good lucky!

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