php-src/Zend/tests/constants_002.phpt

19 lines
380 B
Plaintext
Raw Normal View History

2008-05-12 17:57:21 +00:00
--TEST--
Defining constants with non-scalar values
--FILE--
<?php
define('foo', new stdClass);
var_dump(foo);
define('foo', fopen(__FILE__, 'r'));
var_dump(foo);
?>
--EXPECTF--
Warning: Constants may only evaluate to scalar values or arrays in %s on line %d
2008-05-12 17:57:21 +00:00
Notice: Use of undefined constant foo - assumed 'foo' in %s on line %d
string(%d) "foo"
resource(%d) of type (stream)