Lines Matching +full:php +full:- +full:versions
1 <?php
6 * This file contains a few functions that might be missing from the PHP build
19 …if (!is_string($text)) return false; #FIXME original treats between -128 and 255 inclusive as ASCI…
35 …if (!is_string($text)) return false; #FIXME original treats between -128 and 255 inclusive as ASCI…
43 * work around for PHP compiled against certain zlib versions #865
45 * @link http://stackoverflow.com/questions/23417519/php-zlib-gzopen-not-exists
60 * work around for PHP compiled against certain zlib versions #865
62 * @link http://stackoverflow.com/questions/23417519/php-zlib-gzopen-not-exists
77 * work around for PHP compiled against certain zlib versions #865
79 * @link http://stackoverflow.com/questions/23417519/php-zlib-gzopen-not-exists
91 * polyfill for PHP < 8
92 * @see https://www.php.net/manual/en/function.str-starts-with
102 * polyfill for PHP < 8
103 * @see https://www.php.net/manual/en/function.str-contains
113 * polyfill for PHP < 8
114 * @see https://www.php.net/manual/en/function.str-ends-with
129 …return $needleLength <= \strlen($haystack) && 0 === substr_compare($haystack, $needle, -$needleLen…
134 * polyfill for PHP < 8.1
135 * @see https://www.php.net/manual/en/function.array-is-list
143 return array_keys($arr) === range(0, count($arr) - 1);