summaryrefslogtreecommitdiff
path: root/ext/opcache/tests/jit/const_001.phpt
blob: 55e6878496ff0dd1a73f48169e8d8880c5b9a5f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
--TEST--
JIT CONST: defined
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.file_update_protection=0
opcache.jit_buffer_size=1M
opcache.protect_memory=1
--SKIPIF--
<?php require_once('../skipif.inc'); ?>
--FILE--
<?php
function define_const() {
	define("CUSTOM_CONSTANT", 1);
}
function test_defined() {
	var_dump(defined("CUSTOM_CONSTANT"));
	define_const();
	var_dump(defined("CUSTOM_CONSTANT"));
}

test_defined();
?>
--EXPECT--
bool(false)
bool(true)