Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想制作一个具有集成功能的php模板引擎。例如:
<html> <head></head> <body> <tmp:if {-time-}<"12AM">Good Morning<tmp:else>Good Afternoon</tmp:if> </body> </html>
或类似的东西。我已经制作了一个用相对 db 值替换 {-VAR-} 的函数,但我需要一些 html“函数”。
你能帮助我吗?
我建议在制作自己的模板引擎之前先研究一下现有的模板引擎。
我用树枝
Smarty也是受欢迎的选择。
不要认为你需要重新发明轮子。
您可以扩展这些现有系统以满足您的需求。