因此,我正在尝试消除此字符串中所有出现的“-”。我在repl.it中运行以下函数,但出现错误:“语法错误,意外的')',期望变量(T_VARIABLE)”。请让我知道如何解决此问题。谢谢。
function processDash(stri) {
if(strpos(stri, " - ") === true) {
trim(stri, " - ");
}
}
$url = "the cow jumped - over the fox";
processDash($url);