Hi!
I was just wondering if anyone already tried to interpret TT-Templates in PHP?
My problem is, that I have webspaces where we are using both, perl and php
tools, and the tools are using the same
Header/Footer files.
This works great as long as the Header/Footer are static files. But when our
designers / customers want to put some dynamic content into the Header/Footer,
I have a problem.
I've wrote some regexes that work well, when I just need to insert some file or
variable content:
E.g this works well for [% INCLUDE myfile.htm %]
preg_match_all("/\[\%\s*INCLUDE\s*\"(.*?)\"\s*\%\]/", $cc, $matches);
foreach ($matches[1] as $file) {
$cont = $this->load_file($file);
$cc = preg_replace("/\[\%\s*INCLUDE\s*\"$file\"\s*\%\]/", $cont, $cc);
}
But it would be great to have a support for a normal "IF ELSIF ELSE END" and
FOREACH statement.
Has anyone done already something like this? Or is there a module that can
process that?
Thanks
Denis
"THINK THE WEB WAY."
---------------------------------------------------
NCM - NET COMMUNICATION MANAGEMENT GmbH
---[ Denis Banovic - CTO
mailto:denis.banovic-FL/gvECcVgA@xxxxxxxxxxxxxxxx
---[ Mühlstrasse 4a
AT - 5023 Salzburg
Tel. 0662 / 644 688
---[ Fax: 0662 / 644 688 - 88
http://www.ncm.at
---------------------------------------------------
____________
Virus checked by G DATA AntiVirusKit
Version: AVK 15.0.2702 from 26.01.2005
Virus news: www.antiviruslab.com
|