php-src/Zend/tests/constants_005.phpt

12 lines
201 B
Plaintext
Raw Normal View History

2008-07-28 14:12:19 +00:00
--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)