mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Remove outdated comments in test
This commit is contained in:
parent
5fa6dcd972
commit
ee243bc471
1 changed files with 3 additions and 3 deletions
|
@ -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--
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue