php-src/Zend/tests/constants_005.phpt
2008-07-28 14:12:19 +00:00

12 lines
201 B
PHP
Executable File

--TEST--
Persistent case insensetive and user defined constants
--FILE--
<?php
var_dump(ZEND_THREAD_safe);
define("ZEND_THREAD_safe", 123);
var_dump(ZEND_THREAD_safe);
?>
--EXPECTF--
bool(%s)
int(123)