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.
有什么区别:
HTML SHTML PHTML
为什么以及何时我会使用哪一个?
看起来SHTML = 服务器端包含 HTML (SSI),这只是说服务器可以在引用点(即包含所在的位置)动态注入代码的一种奇特方式。
PHTML是带有内联 PHP 处理指令的 HTML 代码。
当您想要拥有静态内容时,请使用静态 HTML。如果您想做简单的事情,例如包含,请使用 SHTML 。如果您想使用逻辑,请使用 PHTML(尽管如果您真的想要,也可以使用 SHTML)。
.phtml是 Phalcom PHP 框架文件的通常扩展名 :) 参考:https ://docs.phalconphp.com/en/latest/reference/tutorial.html