Heroku 和 PHP 的问题
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要在 Heroku 上为您的应用程序打开短开头标签。在项目的根文件夹中创建一个名为“php.ini”的文件,并向其中添加以下内容:
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:
这些
开始标记称为“短开始标记”,它们的使用设置为 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.