/php-src/Zend/tests/in-de-crement/ |
H A D | incdec_bool_exception.phpt | 25 Increment on type bool has no effect, this will change in the next major version of PHP 26 Decrement on type bool has no effect, this will change in the next major version of PHP 27 Increment on type bool has no effect, this will change in the next major version of PHP 28 Decrement on type bool has no effect, this will change in the next major version of PHP
|
H A D | unset_globals_in_error_handler.phpt | 81 Decrement on type null has no effect, this will change in the next major version of PHP 84 Decrement on type null has no effect, this will change in the next major version of PHP 108 Increment on type bool has no effect, this will change in the next major version of PHP 111 Decrement on type bool has no effect, this will change in the next major version of PHP 114 Increment on type bool has no effect, this will change in the next major version of PHP 117 Decrement on type bool has no effect, this will change in the next major version of PHP 120 Increment on type bool has no effect, this will change in the next major version of PHP 123 Decrement on type bool has no effect, this will change in the next major version of PHP 126 Increment on type bool has no effect, this will change in the next major version of PHP 129 Decrement on type bool has no effect, this will change in the next major version of PHP
|
H A D | unset_object_property_in_error_handler.phpt | 90 string(87) "Decrement on type null has no effect, this will change in the next major version of PHP" 94 string(87) "Decrement on type null has no effect, this will change in the next major version of PHP" 97 string(87) "Decrement on type null has no effect, this will change in the next major version of PHP" 121 string(87) "Increment on type bool has no effect, this will change in the next major version of PHP" 124 string(87) "Decrement on type bool has no effect, this will change in the next major version of PHP" 127 string(87) "Increment on type bool has no effect, this will change in the next major version of PHP" 130 string(87) "Decrement on type bool has no effect, this will change in the next major version of PHP" 133 string(87) "Increment on type bool has no effect, this will change in the next major version of PHP" 136 string(87) "Decrement on type bool has no effect, this will change in the next major version of PHP" 139 string(87) "Increment on type bool has no effect, this will change in the next major version of PHP" [all …]
|
H A D | incdec_undef.phpt | 18 Decrement on type null has no effect, this will change in the next major version of PHP 23 Decrement on type null has no effect, this will change in the next major version of PHP
|
H A D | incdec_types.phpt | 54 Warning: Increment on type bool has no effect, this will change in the next major version of PHP in… 58 Warning: Increment on type bool has no effect, this will change in the next major version of PHP in… 77 Warning: Decrement on type null has no effect, this will change in the next major version of PHP in… 81 Warning: Decrement on type bool has no effect, this will change in the next major version of PHP in… 85 Warning: Decrement on type bool has no effect, this will change in the next major version of PHP in…
|
H A D | oss-fuzz-60709_globals_unset_after_undef_warning.phpt | 25 Decrement on type null has no effect, this will change in the next major version of PHP 32 Decrement on type null has no effect, this will change in the next major version of PHP
|
/php-src/ext/curl/ |
H A D | config.m4 | 36 int major, minor; 37 if (sscanf(ptr, "OpenSSL/%d", &major) == 1) { 38 if (major >= 3) { 43 if (sscanf(ptr, "OpenSSL/%d.%d", &major, &minor) == 2) { 44 if (major > 1 || (major == 1 && minor >= 1)) {
|
/php-src/ext/date/lib/ |
H A D | timelib_private.h | 116 # define TIMELIB_GNUC_CHECK_VERSION(major, minor) \ argument 117 ((__GNUC__ > (major)) || \ 118 ((__GNUC__ == (major)) && (__GNUC_MINOR__ >= (minor)))) 120 # define TIMELIB_GNUC_CHECK_VERSION(major, minor) 0 argument
|
/php-src/ext/xsl/ |
H A D | php_xsl.c | 338 int major, minor, subminor; in PHP_MINFO_FUNCTION() local 341 major = xsltLibxsltVersion/10000; in PHP_MINFO_FUNCTION() 342 minor = (xsltLibxsltVersion - major * 10000) / 100; in PHP_MINFO_FUNCTION() 343 subminor = (xsltLibxsltVersion - major * 10000 - minor * 100); in PHP_MINFO_FUNCTION() 344 snprintf(buffer, 128, "%d.%d.%d", major, minor, subminor); in PHP_MINFO_FUNCTION() 346 major = xsltLibxmlVersion/10000; in PHP_MINFO_FUNCTION() 347 minor = (xsltLibxmlVersion - major * 10000) / 100; in PHP_MINFO_FUNCTION() 348 subminor = (xsltLibxmlVersion - major * 10000 - minor * 100); in PHP_MINFO_FUNCTION() 349 snprintf(buffer, 128, "%d.%d.%d", major, minor, subminor); in PHP_MINFO_FUNCTION()
|
/php-src/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_attr_server_version.phpt | 35 printf("[003] Strange major version: '%s'. Should be more than 3\n", $matches[1]); 43 $major = floor($version / 10000); 46 if ($major < 3) 47 printf("[006] Strange major version: '%s'. Should be more than 3\n", $major);
|
/php-src/ext/standard/ |
H A D | info.c | 269 major = "Windows 11"; in php_get_windows_name() 271 major = "Windows 10"; in php_get_windows_name() 275 major = "Windows Server 2022"; in php_get_windows_name() 286 major = "Windows Server 2019"; in php_get_windows_name() 292 major = "Windows Server 2016"; in php_get_windows_name() 326 major = "Windows 8.1"; in php_get_windows_name() 332 major = "Windows 8"; in php_get_windows_name() 334 major = "Windows Server 2012"; in php_get_windows_name() 339 major = "Windows 8.1"; in php_get_windows_name() 341 major = "Windows Server 2012 R2"; in php_get_windows_name() [all …]
|
/php-src/ext/fileinfo/libmagic/ |
H A D | fsmagic.c | 55 #if defined(major) && !defined(HAVE_MAJOR) 65 # define major(dev) (((dev) >> 8) & 0xff) macro 152 COMMA, major(sb->st_rdev), dv_unit(sb->st_rdev), in file_fsmagic() 157 COMMA, (long)major(sb->st_rdev), in file_fsmagic()
|
/php-src/ext/gd/tests/ |
H A D | imagecreatefromstring_avif.phpt | 13 echo "Reading image whose major brand is 'avif':\n"; 24 Reading image whose major brand is 'avif':
|
/php-src/ext/opcache/tests/jit/ |
H A D | reg_alloc_014.phpt | 21 Warning: Decrement on type null has no effect, this will change in the next major version of PHP in… 23 Warning: Decrement on type null has no effect, this will change in the next major version of PHP in…
|
H A D | inc_017.phpt | 20 Warning: Increment on type bool has no effect, this will change in the next major version of PHP in…
|
H A D | inc_018.phpt | 20 Warning: Increment on type bool has no effect, this will change in the next major version of PHP in…
|
/php-src/win32/ |
H A D | winutil.c | 447 DWORD major = pNTHeader->OptionalHeader.MajorLinkerVersion; in is_compatible() local 462 …if (14 == major && (is_smaller ? core_minor < comp_minor : core_minor > comp_minor) || PHP_LINKER_… in is_compatible() 464 if (PHP_LINKER_MAJOR != major) in is_compatible() 469 spprintf(err, 0, format, buf, major, minor, PHP_LINKER_MAJOR, PHP_LINKER_MINOR); in is_compatible()
|
/php-src/ext/intl/tests/_files/ |
H A D | resourcebundle.txt | 11 major:int { 3 }
|
H A D | es-bundle.txt | 11 major:int { 3 }
|
/php-src/ext/zlib/tests/ |
H A D | zlib_filter_inflate.phpt | 17 I am the very model of a modern major general, I've information vegetable, animal, and mineral.
|
H A D | zlib_filter_deflate.phpt | 7 $text = 'I am the very model of a modern major general, I\'ve information vegetable, animal, and mi…
|
H A D | zlib_filter_deflate2.phpt | 7 $text = 'I am the very model of a modern major general, I\'ve information vegetable, animal, and mi…
|
/php-src/ext/bz2/tests/ |
H A D | bz2_filter_compress.phpt | 7 $text = 'I am the very model of a modern major general, I\'ve information vegetable, animal, and mi…
|
H A D | bz2_filter_decompress.phpt | 17 I am the very model of a modern major general, I've information vegetable, animal, and mineral.
|
/php-src/Zend/tests/ |
H A D | remove_predecessor_of_pi_node.phpt | 16 Warning: Decrement on type null has no effect, this will change in the next major version of PHP in…
|