diff options
author | Jani Taskinen <jani@php.net> | 2007-10-01 12:40:54 +0000 |
---|---|---|
committer | Jani Taskinen <jani@php.net> | 2007-10-01 12:40:54 +0000 |
commit | 2bc631fb4040b731388fb126c2ca76a06d3989d1 (patch) | |
tree | dbfc1e424304b881f3cb6eca8ab7d9d22b75d6b2 /Zend | |
parent | 27e8fa0d31950854c78580264e28008e7f46325d (diff) | |
download | php-git-2bc631fb4040b731388fb126c2ca76a06d3989d1.tar.gz |
MFH:- Added common getopt implementation to core.
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.
Diffstat (limited to 'Zend')
-rw-r--r-- | Zend/tests/018.phpt | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Zend/tests/018.phpt b/Zend/tests/018.phpt index ea875c678a..9543cc4caa 100644 --- a/Zend/tests/018.phpt +++ b/Zend/tests/018.phpt @@ -18,18 +18,16 @@ var_dump(constant("TEST_CONST2")); echo "Done\n"; ?> --EXPECTF-- -Warning: Wrong parameter count for constant() in %s on line %d +Warning: constant() expects exactly 1 parameter, 0 given in %s on line %d NULL -Warning: Wrong parameter count for constant() in %s on line %d +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 -Notice: Array to string conversion in %s on line %d - -Warning: constant(): Couldn't find constant Array in %s on line %d +Warning: constant() expects parameter 1 to be string, array given in %s on line %d NULL int(1) string(4) "test" |