Overview
Phalcon\Support\Version is a small but handy class, that returns the current version of Phalcon installed in your system.
Constants
| Name | Value | Description |
|---|---|---|
VERSION_MAJOR |
0 | The major version |
VERSION_MEDIUM |
1 | The medium version |
VERSION_MINOR |
2 | The minor version |
VERSION_SPECIAL |
3 | The special version (alpha, beta, etc.) |
VERSION_SPECIAL_NUMBER |
4 | The special version number |
Methods
protected function getVersion(): arrayReturn an array with each version part as an element.
<?php
use Phalcon\Support\Version;
$version = new Version();
var_dump($version->getVersion);
// 5.0.0RC4
// [5, 0, 0, 3, 4] protected function get(): stringReturn the version
<?php
use Phalcon\Support\Version;
$version = new Version();
echo $version->get();
// 5.0.0RC4protected function getId(): stringReturn the version as a number string
<?php
use Phalcon\Support\Version;
$version = new Version();
echo $version->getId();
// 5000034