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.
eregiが非推奨であり、preg replace動作が異なることを発見しました。これをどう訳しますか?
eregi
preg replace
$text = eregi_replace("\\[img\\]([^\\[]*)\\[/img\\]", "", $text);
どうやらこれはうまくいきます:
$text = preg_replace("#\[img\](.+?)\[/img\]#is", "", $text);