ユーザーが bbcode を使用して他の人を引用できるフォームがあります。誰かが引用ボタンを押すと、テキストエリアの値は次のようになります:
[quote user=User date=1348246887 post=301]
User post text
[/quote]
そして今、ブロックに変換する私のコードは次のとおりです。
$post = preg_replace("/\[quote user=(.*) date=(.*) post=(.*)](.*)\[\/quote\]/Uis", "<div class=\"quote\"><p>Quote by \\1 at time : \\2<a href=\"index.php?subject=".$_GET['subiect']."&post=\\3\"> </a></p><span>\\4</span></div>", $post);
現在までの時間を preg_replace に変換するにはどうすればよいですか? \2 の値が設定されていないため、preg_replace では実行できません。