您好我想使用str_replace进行简单替换,比如Classic ASP。
$strName="Blush / Black";
$strName=$strName(str_replace("/","&"));
它应该在echo:
时读取 腮红&黑色。我收到致命错误:调用未定义的函数答案 0 :(得分:2)
$strName="Blush / Black";
$strName=str_replace("/","&", $strName);
答案 1 :(得分:2)
$strName=$strName(str_replace("/","&"));
^---- error
你正在使用“变量函数”。在这种情况下,告诉PHP执行一个名为Bush / Black
的函数,它不是一个有效的函数名,也不存在。
你想要的是:
$strName = str_replace('/', '&', 'Blush / Black');