Created
May 4, 2011 13:51
-
-
Save laras126/955247 to your computer and use it in GitHub Desktop.
check PHP version
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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