HTML、SHTML、PHTML
之间的区别是什么?
HTML
SHTML
PHTML
为什么和何时我将使用哪一个
What is the difference between:
HTML
SHTML
PHTML
Why and when i'll use which one?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它看起来像 SHTML = 服务器端包含 HTML (SSI),这只是一个服务器可以在参考点(即包含所在的位置)动态注入代码的奇特方式。
PHTML 是带有内联 PHP 处理指令的 HTML 代码。
It looks like SHTML = Server Side include HTML (SSI), which is just a fancy way of saying the server can dynamically inject code at the reference point (i.e. where the include is).
PHTML is HTML code with inline PHP processing instructions.
当您想要静态内容时,请使用静态 HTML。如果您想做一些简单的事情,例如包含,请使用SHTML。如果您想使用逻辑,请使用 PHTML(如果您确实想使用,也可以使用 SHTML)。
Use static HTML when you want to have static content. Use SHTML if you want to do simple things such as includes. Use PHTML if you want to use logic (though it's possible to do with SHTML if you really want to).
.phtml 是 Phalcom PHP 框架文件的常用扩展名:)
参考:https://docs.phalconphp.com/en/latest/reference /tutorial.html
.phtml is usual extension to Phalcom PHP Framework files :)
Ref.: https://docs.phalconphp.com/en/latest/reference/tutorial.html