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/regexを使用する必要があります。
{{image-4-m}}
これに:
<img src="4.jpg" class="m" />
または別の例、これ:
{{image-53-v}}
<img src="53.jpg" class="v" />
どうすればこれを達成できますか?
preg_replaceを使用して、インデックスでグループを参照できます$n。
preg_replace
$n
preg_replace('/{{image-(\d+)-([mv])}}/', '<img src="$1.jpg" class="$2" />', $template);
これがデモです。