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.
私は正規表現の専門家ではないため、この質問には正規表現の基本的な実装が含まれている可能性があります。
最初に、次のような形式の文字列をユーザーから取得しました。
$id =3; $format = {num}/sometext/sometext;
{num}問題はid の変数に置き換える方法なので、結果は次のようになります。
{num}
3/sometext/sometext;
テンプレートエンジンのようなものです。
str_replace("{num}", $id, $format);
使えませんでしたstr_replace('{num}', $id, $format);か?
str_replace('{num}', $id, $format);