Skip to content

Instantly share code, notes, and snippets.

@laras126
Created May 4, 2011 13:51
Show Gist options
  • Select an option

  • Save laras126/955247 to your computer and use it in GitHub Desktop.

Select an option

Save laras126/955247 to your computer and use it in GitHub Desktop.
check PHP version
<?php
// Testing if we are dealing with version 5.3.0 or higher - prevent site crash if server uses older PHP version
if (version_compare(PHP_VERSION, '5.3.0', '>=')) {
// PHP5 function here
} else {
$error = "<strong>Invalid PHP version, unable to load WPFolio RSS feed. Check your server's PHP preferences and update to the latest PHP version.</strong>";
echo $error;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment