blob: e8903bbcf97580649a2a78ed847a1413b21ad2cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--TEST--
Opcache should replay compilation warnings if opcache.record_warnings=1
--INI--
opcache.record_warnings=1
--FILE--
<?php
require __DIR__ . '/warning_replay.inc';
require __DIR__ . '/warning_replay.inc';
?>
--EXPECTF--
Warning: Unsupported declare 'unknown' in %swarning_replay.inc on line 3
Warning: Unsupported declare 'unknown' in %swarning_replay.inc on line 3
|