Possible Duplicate:
replace multiple placeholders with php?
I've got a .txt-file working as a template. I've made several placeholders like {{NAME}}
and I'd like to replace these with variables. What is the most efficient way to do this? Keep in mind that I have around 10 of these placeholders in my template.
Is there no better way than str_replace?