1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Merge branch 'PHP-8.0' into PHP-8.1

* PHP-8.0:
  Fix bug #81510
This commit is contained in:
Nikita Popov
2021-10-18 12:47:00 +02:00

View File

@@ -12,8 +12,8 @@ max_execution_time=1
hard_timeout=1
--FILE--
<?php
$a1 = range(1, 1000000);
$a2 = range(100000, 1999999);
$a1 = range(1, 2000000);
$a2 = range(100000, 2999999);
array_intersect($a1, $a2);
?>
--EXPECTF--