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.
この正規表現を実行しようとしていますが、失敗します。誰かが私が間違っていることを指摘できますか?
$return = "<list>{eated}</list><full><b>Eated:</b> {eated}<br>" ."<b>Liked Me:</b> {likeme}<br><b>Seen:</b> {seen}<br>{image}</full>"; echo preg_replace("%<list.*?</list>%i", "", $return);
私のエラーを見つけました。
echo preg_replace('/(<list>.+?)+(<\/list>)/is', '', $return);
タグとその内容をうまく置き換えます。