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

Remove outdated comments in test

This commit is contained in:
Nikita Popov
2019-11-07 14:06:23 +01:00
parent 5fa6dcd972
commit ee243bc471

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--