WordPressの管理画面に下記のようなエラーメッセージが出ています。
Deprecated: Array and string offset access syntax with curly braces is deprecated
該当箇所を確認したところ、
function doubleConsonant($str) { $c = $this->regex_consonant; return preg_match("#$c{2}$#", $str, $matches) AND $matches[0]{0} == $matches[0]{1}; } function cvc($str) { $c = $this->regex_consonant; $v = $this->regex_vowel; return preg_match("#($c$v$c)$#", $str, $matches) AND strlen($matches[1]) == 3 AND $matches[1]{2} != 'w' AND $matches[1]{2} != 'x' AND $matches[1]{2} != 'y'; }
上記の、{}部分が原因でした。
勉強不足で、{}の意味するところがよく分かりません、、、
こちらは単純に、[]に置き換えてもいいのでしょうか?
回答1件
あなたの回答
tips
プレビュー