0

有没有办法轻松混合 html 和 php 变量?这是我想做的事情:

<p><strong>Organisation Name:</strong> {$_SESSION['org-name']}</p>

如果不使用 PHP 的模板引擎,这可能Smarty吗?

4

1 回答 1

0

我能想到的最简单的解决方案是使用 php 短标签和某种 MVC(或至少是 VC)结构:

视图.php

<div>
My name is <?= $myName ?>
</div>

主文件

$myName = 'John'; //or $_SESSION['myName'] or whatever
include 'view.php'; // after include the variable $myName will be visible inside of view.php
于 2013-08-13T10:10:44.273 回答