12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Component\Intl\Util;
- /**
- * Facilitates the comparison of version strings.
- *
- * @author Bernhard Schussek <bschussek@gmail.com>
- */
- class Version
- {
- /**
- * Compares two versions with an operator.
- *
- * This method is identical to {@link version_compare()}, except that you
- * can pass the number of regarded version components in the last argument
- * $precision.
- *
- * Examples:
- *
- * Version::compare('1.2.3', '1.2.4', '==')
- * // => false
- *
- * Version::compare('1.2.3', '1.2.4', '==', 2)
- * // => true
- *
- * @param int|null $precision The number of components to compare. Pass
- * NULL to compare the versions unchanged.
- *
- * @return bool Whether the comparison succeeded
- *
- * @see normalize()
- */
- public static function compare(string $version1, string $version2, string $operator, ?int $precision = null)
- {
- $version1 = self::normalize($version1, $precision);
- $version2 = self::normalize($version2, $precision);
- return version_compare($version1, $version2, $operator);
- }
- /**
- * Normalizes a version string to the number of components given in the
- * parameter $precision.
- *
- * Examples:
- *
- * Version::normalize('1.2.3', 1);
- * // => '1'
- *
- * Version::normalize('1.2.3', 2);
- * // => '1.2'
- *
- * @param int|null $precision The number of components to include. Pass
- * NULL to return the version unchanged.
- *
- * @return string|null the normalized version or NULL if it couldn't be
- * normalized
- */
- public static function normalize(string $version, ?int $precision)
- {
- if (null === $precision) {
- return $version;
- }
- $pattern = '[^\.]+';
- for ($i = 2; $i <= $precision; ++$i) {
- $pattern = sprintf('[^\.]+(\.%s)?', $pattern);
- }
- if (!preg_match('/^'.$pattern.'/', $version, $matches)) {
- return null;
- }
- return $matches[0];
- }
- /**
- * Must not be instantiated.
- */
- private function __construct()
- {
- }
- }
|