diff options
author | Stanislav Malyshev <stas@php.net> | 2008-06-18 23:38:37 +0000 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2008-06-18 23:38:37 +0000 |
commit | 58a673a9094bd26453e2b910b87ae45800ecc88c (patch) | |
tree | dca71e1937d0ea288eb8861659ed814701674cc4 /Zend/tests/017.phpt | |
parent | 5d4eed8f47389414c72aae00297cdaa1c8c1c84f (diff) | |
download | php-git-58a673a9094bd26453e2b910b87ae45800ecc88c.tar.gz |
Use new parameter parsing API for builtin functions
Diffstat (limited to 'Zend/tests/017.phpt')
-rw-r--r-- | Zend/tests/017.phpt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Zend/tests/017.phpt b/Zend/tests/017.phpt index a7c6296eb5..09ad123c7e 100644 --- a/Zend/tests/017.phpt +++ b/Zend/tests/017.phpt @@ -45,11 +45,11 @@ var_dump(count(get_extension_funcs("zend"))); echo "Done\n"; ?> --EXPECTF-- -Warning: Wrong parameter count for get_resource_type() in %s on line %d +Warning: get_resource_type() expects exactly 1 parameter, 0 given in %s on line %d NULL -Warning: Supplied argument is not a valid resource handle in %s on line %d -bool(false) +Warning: get_resource_type() expects parameter 1 to be resource, string given in %s on line %d +NULL string(6) "stream" string(7) "Unknown" string(5) "array" @@ -76,7 +76,7 @@ NULL string(5) "array" int(%d) -Warning: Wrong parameter count for get_extension_funcs() in %s on line %d +Warning: get_extension_funcs() expects exactly 1 parameter, 0 given in %s on line %d NULL bool(false) string(5) "array" |