PluginProbe ʕ •ᴥ•ʔ
WP 2FA – Two-factor authentication for WordPress / 1.6.0
WP 2FA – Two-factor authentication for WordPress v1.6.0
4.0.0 1.7.1 2.0.0 2.0.1 2.1.0 2.2.0 2.2.1 2.3.0 2.4.0 2.4.1 2.4.2 2.5.0 2.6.0 2.6.1 2.6.2 2.6.3 2.6.4 2.7.0 2.8.0 2.9.0 2.9.1 2.9.2 2.9.3 3.0.0 3.0.1 3.1.0 3.1.1 3.1.1.2 trunk 1.2.0 1.3.0 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 1.5.2 1.6.0 1.6.1 1.6.2 1.7.0
wp-2fa / vendor / symfony / polyfill-php72 / bootstrap.php
wp-2fa / vendor / symfony / polyfill-php72 Last commit date
LICENSE 5 years ago Php72.php 5 years ago README.md 5 years ago bootstrap.php 5 years ago
bootstrap.php
58 lines
1 <?php
2
3 /*
4 * This file is part of the Symfony package.
5 *
6 * (c) Fabien Potencier <fabien@symfony.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12 use Symfony\Polyfill\Php72 as p;
13
14 if (PHP_VERSION_ID >= 70200) {
15 return;
16 }
17
18 if (!defined('PHP_FLOAT_DIG')) {
19 define('PHP_FLOAT_DIG', 15);
20 }
21 if (!defined('PHP_FLOAT_EPSILON')) {
22 define('PHP_FLOAT_EPSILON', 2.2204460492503E-16);
23 }
24 if (!defined('PHP_FLOAT_MIN')) {
25 define('PHP_FLOAT_MIN', 2.2250738585072E-308);
26 }
27 if (!defined('PHP_FLOAT_MAX')) {
28 define('PHP_FLOAT_MAX', 1.7976931348623157E+308);
29 }
30 if (!defined('PHP_OS_FAMILY')) {
31 define('PHP_OS_FAMILY', p\Php72::php_os_family());
32 }
33
34 if ('\\' === DIRECTORY_SEPARATOR && !function_exists('sapi_windows_vt100_support')) {
35 function sapi_windows_vt100_support($stream, $enable = null) { return p\Php72::sapi_windows_vt100_support($stream, $enable); }
36 }
37 if (!function_exists('stream_isatty')) {
38 function stream_isatty($stream) { return p\Php72::stream_isatty($stream); }
39 }
40 if (!function_exists('utf8_encode')) {
41 function utf8_encode($s) { return p\Php72::utf8_encode($s); }
42 }
43 if (!function_exists('utf8_decode')) {
44 function utf8_decode($s) { return p\Php72::utf8_decode($s); }
45 }
46 if (!function_exists('spl_object_id')) {
47 function spl_object_id($s) { return p\Php72::spl_object_id($s); }
48 }
49 if (!function_exists('mb_ord')) {
50 function mb_ord($s, $enc = null) { return p\Php72::mb_ord($s, $enc); }
51 }
52 if (!function_exists('mb_chr')) {
53 function mb_chr($code, $enc = null) { return p\Php72::mb_chr($code, $enc); }
54 }
55 if (!function_exists('mb_scrub')) {
56 function mb_scrub($s, $enc = null) { $enc = null === $enc ? mb_internal_encoding() : $enc; return mb_convert_encoding($s, $enc, $enc); }
57 }
58