xref: /PHP-7.4/ext/opcache/tests/001_cli.phpt (revision 3abde432)
1--TEST--
2001: O+ works in CLI
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_cache_only=0
7--SKIPIF--
8<?php require_once('skipif.inc'); ?>
9--FILE--
10<?php
11$config = opcache_get_configuration();
12$status = opcache_get_status();
13var_dump($config["directives"]["opcache.enable"]);
14var_dump($config["directives"]["opcache.enable_cli"]);
15var_dump($status["opcache_enabled"]);
16?>
17--EXPECT--
18bool(true)
19bool(true)
20bool(true)
21