mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
2bc631fb40
MFH:- Added long-option feature to getopt(). MFH:- Made getopt() available on win32 systems. MFH: Patch by: David Soria Parra <dsp@php.net> [DOC]: These changes will be available from 5.3+ # Note: Fixed also tests and synced basic_functions.c with HEAD.
35 lines
650 B
PHP
35 lines
650 B
PHP
--TEST--
|
|
constant() tests
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump(constant());
|
|
var_dump(constant("", ""));
|
|
var_dump(constant(""));
|
|
|
|
var_dump(constant(array()));
|
|
|
|
define("TEST_CONST", 1);
|
|
var_dump(constant("TEST_CONST"));
|
|
|
|
define("TEST_CONST2", "test");
|
|
var_dump(constant("TEST_CONST2"));
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Warning: constant() expects exactly 1 parameter, 0 given in %s on line %d
|
|
NULL
|
|
|
|
Warning: constant() expects exactly 1 parameter, 2 given in %s on line %d
|
|
NULL
|
|
|
|
Warning: constant(): Couldn't find constant in %s on line %d
|
|
NULL
|
|
|
|
Warning: constant() expects parameter 1 to be string, array given in %s on line %d
|
|
NULL
|
|
int(1)
|
|
string(4) "test"
|
|
Done
|