用PHP替换ASP?

时间:2011-10-11 14:17:34

标签: php asp-classic replace str-replace

您好我想使用str_replace进行简单替换,比如Classic ASP。

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

它应该在echo:

时读取 腮红&黑色。我收到致命错误:调用未定义的函数

2 个答案:

答案 0 :(得分:2)

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

答案 1 :(得分:2)

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

你正在使用“变量函数”。在这种情况下,告诉PHP执行一个名为Bush / Black的函数,它不是一个有效的函数名,也不存在。

你想要的是:

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