PHP Experience-Get PHP version information and version comparison

Source: Internet
Author: User

Original: PHP Experience-Get PHP version information and version comparison

Accidentally see someone else write a code:

<? PHP if (version_comparephp_version, ">")) {     die ("PHP 5.2 or greater is required!!!" ); }?>

Find the version information to get PHP so simple ~ ~ ~

Php_version is a constant and he can get PHP version information.

Version_compare is a version comparison tool, and of course it can be used as a comparison tool for other versions:

<?PHPif(Version_compare(php_version, ' 6.0.0 ') >= 0) {     Echo' I am at least PHP version 6.0.0, my version: '.php_version. "\ n"; } if(Version_compare(php_version, ' 5.3.0 ') >= 0) {     Echo' I am at least PHP version 5.3.0, my version: '.php_version. "\ n"; } if(Version_compare(php_version, ' 5.0.0 ', ' >= ')) {     Echo' I am using PHP 5, my version: '.php_version. "\ n"; } if(Version_compare(php_version, ' 5.0.0 ', ' < ')) {     Echo' I am using PHP 4, my version: '.php_version. "\ n"; } ?>

PHP Experience-Get PHP version information and version comparison

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.