mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
17 lines
303 B
PHP
Executable File
17 lines
303 B
PHP
Executable File
--TEST--
|
|
Bug #38579 (include_once() may include the same file twice)
|
|
--SKIPIF--
|
|
<?php
|
|
if (substr(PHP_OS, 0, 3) != 'WIN') {
|
|
die('skip only for Windows');
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$file = dirname(__FILE__)."/bug38579.inc";
|
|
include_once(strtolower($file));
|
|
include_once(strtoupper($file));
|
|
?>
|
|
--EXPECT--
|
|
ok
|