1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/Zend/tests/constants/line_const_in_array.phpt
DanielEScherzer a50f82bebf Zend/tests: organize some tests with sub directories (6) (#17807)
Move more tests into existing directories

Work towards GH-15631
2025-02-15 14:55:07 +00:00

22 lines
187 B
PHP

--TEST--
Use of __LINE__ in arrays
--FILE--
<?php
var_dump([
__LINE__,
__LINE__,
__LINE__,
]);
?>
--EXPECT--
array(3) {
[0]=>
int(4)
[1]=>
int(5)
[2]=>
int(6)
}