PHP 已安装且 运行 但未在页面上加载

PHP is installed and running but not loading on page

我最近安装了 Apache、MySQL 和 PHP,但是页面没有加载 PHP 代码,它被解释为 HTML 评论。所有服务都已启用,但不知道发生了什么。显然无法重现我的本地主机环境。

我在 Linux Mint 20 和最新的 Apache/MySQL/PHP。

有人知道如何让 PHP 工作吗?

您的 PHP 标签很短。为了启用它们,您需要在 php.ini 中更改 short_open_tag=On,或者只写 <?php 而不是 <?


///BONUS : the short tag '<?=' can be used without editing the php.ini. It's shorter than:
<?php echo $var; ?>

<?= $var; ?>