1--TEST-- 2Bug #64482 (Opcodes for dynamic includes should not be cached) 3--INI-- 4opcache.enable=1 5opcache.enable_cli=1 6--EXTENSIONS-- 7opcache 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