JasonLewis Posted June 30, 2010 Share Posted June 30, 2010 What I'm attempting to do is compare versions of MySQL. I couldn't find any reference to a default PHP function, although I was thinking of using PHPs version_compare(), and just throwing in the MySQL Version number as the first parameter. What I'm unsure of is that MySQL version numbers are different. They have versions like 5.1.36. So, for example: 5.1.36 < 5.1.4 (true, if I use version_compare it says false) Unless 5.1.4 is really 5.1.04. I'm just not 100% on how MySQL does its version numbering. I was beginning to write a function that compared version numbers, but if I can use version_compare() then I will. Cheers. Link to comment https://forums.phpfreaks.com/topic/206311-compare-mysql-versions/ Share on other sites More sharing options...
JasonLewis Posted June 30, 2010 Author Share Posted June 30, 2010 Just for reference for those interested. I was just unaware of how version numbers work. MySQL uses the M.m.r numbering system. M = Major m = minor r = revision So in conclusion, you can use version_compare to compare MySQL Versions. Link to comment https://forums.phpfreaks.com/topic/206311-compare-mysql-versions/#findComment-1079285 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.