Currently doing a version check for a minimum required PHP version, I came across some servers that say their PHP version (checked with phpversion
) is:
PHP 5.2.0-8+etch16
Since I'm a Windows guy and no Linux/PHP guy, I failed to find meaningful results for the -8
and +etch16
parts.
My two questions are:
- What does the
-8
mean? - What does the
+etch16
mean?
(I'm assuming that in my above example the actual core installed PHP version is 5.2.0
).