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()