Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是有效的 PHP 语法吗?我认为它可能会导致以下警告:
Warning: Illegal offset type
$filterclear = str_replace($tag, '', $queryString); $filterclear = str_replace(array('=+', '++', '+&'), array('=', '+', '&'), $filterclear);
它看起来不错,所以我唯一能想到的是,您可能在$tag变量或$queryString变量中使用对象而不是字符串。我会尝试var_dump()使用这些变量来确保它们是正确的类型。如果他们是这个函数很可能不是罪魁祸首。
$tag
$queryString
var_dump()