PHP文件加密问题

发布于 2024-11-02 04:38:58 字数 134 浏览 0 评论 0原文

我有一个 php 脚本,我认为它是使用 Zend 加密的。当我运行 php filename.php 时,它运行良好,但当我将其包含在 bash 脚本中时,它运行良好。有谁知道可能出了什么问题?我已将 php 安装在 /usr/local/bin/ 中。

I have an php script which is encrypted I think using Zend. When i run php filename.php, it runs fine although it doesn't when I include it in a bash script. Does anyone know what could be wrong? I have php installed in /usr/local/bin/.

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

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

发布评论

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

评论(1

花海 2024-11-09 04:38:58

您可以检查一下您的命令行运行的 php.ini 文件:

$ php -i | grep 'Configuration File'

那么您可以修改该文件来加载 zend 优化器。 (在您的 Web 服务器使用的 php.ini 中查找 zend_extension 标志)

或者,您可以通过 -c 标志强制使用哪个 php.ini 文件

$ php -c /path/to/web-server/php.ini myscript.php

You can check to see what php.ini file your command line i running with this:

$ php -i | grep 'Configuration File'

So then you can either modify that file to load zend optimizer. (look for the zend_extension flag in the php.ini your web server uses)

Or, you can force which php.ini file to use with the -c flag

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