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 页面,而无需打开 PHP。
例子:
<html> <body> <h1>{{title}}</h1> <hr /> {{content}} </body> </html>
因此,之间的值{{}}定义了需要显示的内容,而不是每次需要时打开和关闭 PHP。
{{}}
我假设它是 HTML parsedown link的某个版本,但如果有人详细说明这个主题,我将不胜感激。
使用简码回显<?=$title;?>
<?=$title;?>
与将所有内容包装在一起相比,这并没有那么多工作{{}}