PHP experience-obtain PHP version information and version Comparison

Source: Internet
Author: User

I accidentally saw a sentence written by someone else.Code:

 
<?PHPIf(Version_compare("1, 5.2 ",Php_version, ">")){Die("Php 5.2 or greater is required !!! ");}?>

It turns out that retrieving PHP version information is so simple ~~~

Php_version is a constant that can obtain the PHP version information.

Version_compare is a version comparison tool. It can also be used as a comparison tool for other versions:

<? PHP  If ( Version_compare ( Php_version , '6. 100')> = 0 ){ Echo 'I am at least PhP Version 6.0.0, my version :'. Php_version . "\ N" ;}  If ( Version_compare ( Php_version , '5. 100')> = 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" ;} ?>

 

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.