summaryrefslogtreecommitdiff
path: root/Zend/tests/constants_005.phpt
blob: b5a3a6bd38c0507e30f0b390b136d97ac0f01d03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
Persistent case insensitive and user defined constants
--FILE--
<?php
var_dump(ZEND_THREAD_safe);
define("ZEND_THREAD_safe", 123);
var_dump(ZEND_THREAD_safe);
?>
--EXPECTF--
Warning: Use of undefined constant ZEND_THREAD_safe - assumed 'ZEND_THREAD_safe' (this will throw an Error in a future version of PHP) in %s on line %d
string(16) "ZEND_THREAD_safe"
int(123)