summaryrefslogtreecommitdiff
path: root/Zend/tests/use_const/shadow_core.phpt
blob: 7d8bcbd1892f467ae4cb0152a7fbdcd9f3dbe129 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
shadowing a global core constant with a local version
--FILE--
<?php

require 'includes/foo_php_version.php';

use const foo\PHP_VERSION;

var_dump(PHP_VERSION);
echo "Done\n";

?>
--EXPECTF--
int(42)
Done