Home
Products
Services
Contact Us
X
How to check PHP version – WordPress
<?php
if
(
version_compare
(
PHP_VERSION
,
'5.2.4'
,
'<'
)
)
{
wp_die
(
'PHP 5.2.4 is required.'
)
;
}
;
?>
<?php if ( version_compare(PHP_VERSION, '5.2.4', '<') ) { wp_die('PHP 5.2.4 is required.'); }; ?>