PHP » PYTHON |
login |
register |
about
|
PYTHON version_compare
is this article helpful?
|
Python replacement for PHP's version_compare
[
edit
| history
]
from distutils.version import LooseVersion if version.LooseVersion("5.0") > version.LooseVersion("4.0"): print("Universe is still in order") version_compare(PHP 4 >= 4.1.0, PHP 5) version_compare — Compares two "PHP-standardized" version number strings Descriptionversion_compare() compares two "PHP-standardized" version number strings. This is useful if you would like to write programs working only on some versions of PHP. The function first replaces _, - and + with a dot . in the version strings and also inserts dots . before and after any non number so that for example '4.3.2RC1' becomes '4.3.2.RC.1'. Then it splits the results like if you were using explode('.', $ver). Then it compares the parts starting from left to right. If a part contains special version strings these are handled in the following order: dev < alpha = a < beta = b < RC < pl. This way not only versions with different levels like '4.1' and '4.1.2' can be compared but also any PHP specific version containing development state. Parameters
Return ValuesBy default, version_compare() returns -1 if the first version is lower than the second, 0 if they are equal, and 1 if the second is lower. When using the optional operator argument, the function will return TRUE if the relationship is the one specified by the operator, FALSE otherwise. ExamplesThe examples below use the PHP_VERSION constant, because it contains the value of the PHP version that is executing the code.
Example #1 version_compare() examples
<?php
Notes
See Also
|
more
Recently updated
more
Most requested
|