'A guide is available for migrating from PHP 5.3 to 5.4.', '5.2' => 'A guide is available for migrating from PHP 5.2 to 5.3.', '5.1' => 'A guide is available for migrating from PHP 5.1 to 5.2.', '5.0' => 'A guide is available for migrating from PHP 5.0 to 5.1.', '4.4' => 'A guide is available for migrating from PHP 4 to PHP 5.0.
The end of life for PHP 4.4 also marks the end of life for PHP 4 as a whole.', ); site_header('Unsupported Branches'); ?>

Unsupported Branches

This page lists the end of life date for each unsupported branch of PHP. If you are using these releases, you are strongly urged to upgrade to a current version, as using older versions may expose you to security vulnerabilities and bugs that have been fixed in more recent versions of PHP.

$branches): foreach ($branches as $branch => $detail) { try { $now = new DateTime; $then = new DateTime('@'.$detail['date']); $diff = $now->diff($then); $times = array(); if ($diff->y) { $times[] = array($diff->y,'year'); if ($diff->m) { $times[] = array($diff->m,'month'); } } elseif ($diff->m) { $times[] = array($diff->m,'month'); } elseif ($diff->d) { $times[] = array($diff->d,'day'); } else { $eolPeriod = 'moments ago...'; } if ($times) { $eolPeriod = implode(', ', array_map( function($t) { return "$t[0] $t[1]" . ($t[0] != 1 ? 's' : ''); }, $times ) ) . " ago"; } } catch(Exception $e) { $eolPeriod = 'unknown...'; } ?>
Branch Date Last Release Notes