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

Merge branch 'PHP-7.4'

* PHP-7.4:
  Remove outdated comments in test
This commit is contained in:
Nikita Popov
2019-11-07 14:06:53 +01:00

View File

@@ -4,9 +4,9 @@ Bug #78759: array_search in $GLOBALS
<?php
$a = 22;
var_dump($GLOBALS["a"]); // int 22
var_dump(array_search(22, $GLOBALS)); // false
var_dump(array_search(22, $GLOBALS, true)); // false
var_dump($GLOBALS["a"]);
var_dump(array_search(22, $GLOBALS));
var_dump(array_search(22, $GLOBALS, true));
?>
--EXPECT--