有没有办法仅使用硬盘上的文件来检查 php 版本号?
我有一个硬盘驱动器曾经位于服务器中,现在我试图找出服务器上安装的 php 的确切版本。我知道它是版本 4,因为它所在的文件夹是 /etc/php4,但我想知道是否有配置文件或某个文件可以告诉我它的确切版本。我检查了 php.ini,没有它。操作系统是 debian。谢谢!
I have a hard drive that used to be in a server, now I'm trying to find out what exact version of php was installed on the server. I know it was version 4 because the folder it's in is /etc/php4, but I'm wondering if there is a config file, or some file somewhere that would tell me what exact version it is. I check php.ini and that didn't have it. The OS was debian. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(17)
~没有更多了~
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如果您可以找到
php
可执行文件,则可以使用 Linux 上的strings
实用程序从其中提取版本号。就我而言(Ubuntu Linux),它位于/usr/bin/php
中。如果我然后运行,
我会得到:
如果你找不到该字符串,请尝试这个:
我得到的结果(那里有很多版本号的示例):
告诉我 PHP 版本是 5.3.2。
If you can find the
php
executable, you can probably extract the version number from within using thestrings
utility on Linux. In my case (Ubuntu Linux), it's in/usr/bin/php
.If I then run
I get:
If you can't find that string, try this:
for which I get (lots of examples of the version number there):
Telling me that the PHP version is 5.3.2.