$file=file("templates/index.html");
$rcontent=join("",$file);
preg_replace("/{{(.*?)}}/e","$$1",$rcontent); //explain this regular expression statement alone
print $rcontent;

See this page for the e modifier.

I think it is for a template engine, it looks what is between double curly braces and parses that before replacing it into the string.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.