constants_002.phpt 237 B

12345678910111213141516
  1. --TEST--
  2. Defining constants with non-scalar values
  3. --FILE--
  4. <?php
  5. define('foo', new stdClass);
  6. var_dump(foo);
  7. define('bar', fopen(__FILE__, 'r'));
  8. var_dump(bar);
  9. ?>
  10. --EXPECTF--
  11. object(stdClass)#1 (0) {
  12. }
  13. resource(%d) of type (stream)