Heroku 和 PHP 的问题

发布于 2024-12-05 05:20:24 字数 189 浏览 0 评论 0原文

我正在 Heroku 中创建一个 PHP 应用程序。问题是 Heroku 无法将某些标签理解为 PHP。例如, 不会被识别为 PHP,而是被识别为纯 HTML。

例如,我是否必须配置某些内容或使用

I'm creating a PHP application within Heroku. The problem is Heroku doesn't understand some tags as PHP. For example, <?=$some_var?> is not recognized as PHP, but as pure HTML.

Do I have to configure something or use <?php echo $some_var ?>, for example, instead?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

尴尬癌患者 2024-12-12 05:20:24

您需要在 Heroku 上为您的应用程序打开短开头标签。在项目的根文件夹中创建一个名为“php.ini”的文件,并向其中添加以下内容:

short_open_tag = true

You need to turn on short opening tags for your app on Heroku. Create a file called "php.ini" in the root folder of your project and add the following to it:

short_open_tag = true
挽袖吟 2024-12-12 05:20:24

这些 开始标记称为“短开始标记”,它们的使用设置为 PHP 配置文件

出于这个原因,通常不建议使用短标签;无法保证您将部署的服务器将配置为使用它们。

These <?= opening tags are called "short opening tags", and their use is set the PHP configuration file.

It is generally not advised to use short tags for this very reason; there's no guarantee the server you'll deploy on will be configured to use them.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文