summaryrefslogtreecommitdiff
path: root/tests/output/ob_get_length_error_001.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/output/ob_get_length_error_001.phpt')
-rw-r--r--tests/output/ob_get_length_error_001.phpt22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/output/ob_get_length_error_001.phpt b/tests/output/ob_get_length_error_001.phpt
new file mode 100644
index 0000000..8218b50
--- /dev/null
+++ b/tests/output/ob_get_length_error_001.phpt
@@ -0,0 +1,22 @@
+--TEST--
+Test wrong number of arguments for ob_get_length()
+--FILE--
+<?php
+/*
+ * proto int ob_get_length(void)
+ * Function is implemented in main/output.c
+*/
+
+$extra_arg = 1;
+
+echo "\nToo many arguments\n";
+var_dump(ob_get_length($extra_arg));
+
+
+?>
+--EXPECTF--
+
+Too many arguments
+
+Warning: ob_get_length() expects exactly 0 parameters, 1 given in %s on line 10
+NULL \ No newline at end of file