Düzenli ifadeler sadece benim bir şey değil. (
Ben gibi birden fazla alt dizeleri içerebilir bir dize var:
[var1="111" var2="222" var3="222" var4="444"]
Ben temelde her değişkeni alır bir işlevin sonuçları ile her tekrarlamasını değiştirmek gerekiyor.
$string = '[var1="111" var2="222" var3="333" var4="444"]';
$regex = 'var1="(.*)" var2="(.*)" var3="(.*)" var4="(.*)"';
function doit($matches){
return "<strong>".implode(", ", $matches) ."</strong>";
}
echo preg_replace_callback($regex,'doit',$string);
Ben bekliyordum 111, 222, 333, 444.
Ama ben aşkı hissetmiyorum. Herhangi bir yardım mutluluk duyacağız!
Edit: some clarification..
Ben soru uğruna basitleştirilmesi edildi.
the "vars" will not really be called "var1", "var2" more like [recID="22" template="theName" option="some value", type="list"]
the call back would be more complicated then my simple implode... I would use "id" and connect to a database, get the records and insert them into the template... Hence the need for the call back...
matched values could be almost anything, not just numbers.