1
0
mirror of https://github.com/php/php-src.git synced 2026-03-30 12:13:02 +02:00
Files
archived-php-src/Zend/tests/018.phpt
2019-03-11 11:32:20 +01:00

22 lines
320 B
PHP

--TEST--
constant() tests
--FILE--
<?php
var_dump(constant(""));
define("TEST_CONST", 1);
var_dump(constant("TEST_CONST"));
define("TEST_CONST2", "test");
var_dump(constant("TEST_CONST2"));
echo "Done\n";
?>
--EXPECTF--
Warning: constant(): Couldn't find constant in %s on line %d
NULL
int(1)
string(4) "test"
Done