如何摆脱字符串PHP中的一组字符

时间:2018-10-22 20:14:40

标签: php string function

因此,我正在尝试消除此字符串中所有出现的“-”。我在repl.it中运行以下函数,但出现错误:“语法错误,意外的')',期望变量(T_VARIABLE)”。请让我知道如何解决此问题。谢谢。

function processDash(stri) {
  if(strpos(stri, " - ") === true) {
    trim(stri, " - ");
  }
}


$url = "the cow jumped - over the fox";

processDash($url);

0 个答案:

没有答案