xref: /PHP-7.4/ext/opcache/tests/bug64482.phpt (revision 782352c5)
1--TEST--
2Bug #64482 (Opcodes for dynamic includes should not be cached)
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6--SKIPIF--
7<?php require_once('skipif.inc'); ?>
8--FILE--
9<?php
10include 'bug64482.inc';
11echo "\n";
12include 'php://filter/read=string.toupper/resource=bug64482.inc';
13echo "\n";
14?>
15--EXPECT--
16Dynamic include
17DYNAMIC INCLUDE
18