mirror of
https://github.com/php/php-src.git
synced 2025-01-07 11:34:09 +08:00
e9f783fcdd
For rationale, see #6787 Extensions migrated in part 3: * ftp * gmp * iconv * opcache * shmop
25 lines
545 B
PHP
25 lines
545 B
PHP
--TEST--
|
|
Bug #78106: Path resolution fails if opcache disabled during request
|
|
--EXTENSIONS--
|
|
opcache
|
|
--CONFLICTS--
|
|
server
|
|
--FILE--
|
|
<?php
|
|
|
|
include __DIR__ . "/php_cli_server.inc";
|
|
php_cli_server_start(getenv('TEST_PHP_EXTRA_ARGS'));
|
|
|
|
echo file_get_contents("http://" . PHP_CLI_SERVER_ADDRESS . "/bug78106_test1.php" );
|
|
echo file_get_contents("http://" . PHP_CLI_SERVER_ADDRESS . "/bug78106_test2.php" );
|
|
echo file_get_contents("http://" . PHP_CLI_SERVER_ADDRESS . "/bug78106_test1.php" );
|
|
|
|
?>
|
|
--EXPECT--
|
|
included
|
|
done
|
|
included
|
|
done
|
|
included
|
|
done
|