mirror of
https://github.com/php/php-src.git
synced 2024-11-28 04:14:26 +08:00
25 lines
574 B
PHP
25 lines
574 B
PHP
--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 in %s on line %d
|
|
|
|
Notice: Use of undefined constant foo - assumed 'foo' in %s on line %d
|
|
string(%d) "foo"
|
|
resource(%d) of type (stream)
|
|
--UEXPECTF--
|
|
Warning: Constants may only evaluate to scalar values in %s on line %d
|
|
|
|
Notice: Use of undefined constant foo - assumed 'foo' in %s on line %d
|
|
unicode(%d) "foo"
|
|
resource(%d) of type (stream)
|