ASP 替换 PHP 吗?

发布于 2024-12-09 18:54:16 字数 210 浏览 0 评论 0原文

您好,我想使用 str_replace 进行简单的替换,就像经典 ASP 一样。

$strName="Blush / Black";
$strName=$strName(str_replace("/","&"));

当 echo 时,它应该显示为:

Blush &黑色的。我收到致命错误:调用未定义的函数

Hi I want to do a simple replace using str_replace, like Classic ASP.

$strName="Blush / Black";
$strName=$strName(str_replace("/","&"));

It should read, when echo:

Blush & Black. I get an Fatal error: Call to undefined function

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

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

发布评论

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

评论(2

汹涌人海 2024-12-16 18:54:16
$strName="Blush / Black";
$strName=str_replace("/","&", $strName);
$strName="Blush / Black";
$strName=str_replace("/","&", $strName);
梦在夏天 2024-12-16 18:54:16
$strName=$strName(str_replace("/","&"));
         ^---- error

您正在使用“变量函数”。在本例中,告诉 PHP 执行名为 Bush / Black 的函数,该函数不是有效的函数名称,也不存在。

你想要的是:

   $strName = str_replace('/', '&', 'Blush / Black');
$strName=$strName(str_replace("/","&"));
         ^---- error

you're using a "variable function". In this case, telling PHP to execute a function called Bush / Black, which is not a valid function name, and also doesn't exist.

What you want is:

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