cyrosy / php-end-of-life
库函数,展示PHP版本的生命周期结束日期
1.0.1
2020-09-15 09:25 UTC
Requires
- php: ^5.3.3|^7.0
- webmozart/assert: ^1.4
Requires (Dev)
This package is auto-updated.
Last update: 2024-09-11 16:52:32 UTC
README
展示PHP的生命周期结束日期,让您检查您的版本是否受支持。
安装
composer require cyrosy/php-end-of-life
使用
<?php use \Cyrosy\PhpEndOfLife\PhpEndOfLife; $currentVersion = (float) phpversion(); if (!PhpEndOfLife::isSupported($currentVersion)) { user_error(sprintf('Your current PHP version %s is not supported ! You should upgrade to prevent security exploits.', $currentVersion), E_USER_WARNING); }