Skip to content

Instantly share code, notes, and snippets.

@mikeott
Last active January 19, 2023 01:36
Show Gist options
  • Save mikeott/dccab0ae302c3990c343a7ccb26c5b15 to your computer and use it in GitHub Desktop.
Save mikeott/dccab0ae302c3990c343a7ccb26c5b15 to your computer and use it in GitHub Desktop.
PHP version compare
<?php
$current_version = '1.4.0';
$required_version = '3.9.2';
if (version_compare($current_version, $required_version) < 0) {
// Do something
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment