Home >Backend Development >PHP Tutorial >linux - Shell中如何获得最新版本的PHP?

linux - Shell中如何获得最新版本的PHP?

WBOY
WBOYOriginal
2016-06-06 20:51:581209browse

我需要在Shell中获得最新PHP版本号,然后检查服务器是否需要升级。

比如 Apache 提供的下载是 http://www.apache.org/dist/httpd/ ,它将所有版本都列出来了,我可以通过elinks和awk轻松提取最新版本号,但是php要怎样做呢?

回复内容:

我需要在Shell中获得最新PHP版本号,然后检查服务器是否需要升级。

比如 Apache 提供的下载是 http://www.apache.org/dist/httpd/ ,它将所有版本都列出来了,我可以通过elinks和awk轻松提取最新版本号,但是php要怎样做呢?

你的意思是通过awk去解析html,然后parse版本号吗?

http://www.php.net/downloads.php 这个链接里有 Current stable

curl http://www.php.net/downloads.php|grep "Current stable" |awk '{print $3}'

可以获取最新版本号
然后通过 php -v 可以获得php的版本号。

感谢!问题已解决。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn