PHP文件加密问题
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以检查一下您的命令行运行的 php.ini 文件:
那么您可以修改该文件来加载 zend 优化器。 (在您的 Web 服务器使用的 php.ini 中查找 zend_extension 标志)
或者,您可以通过 -c 标志强制使用哪个 php.ini 文件
You can check to see what php.ini file your command line i running with this:
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