summaryrefslogtreecommitdiff
path: root/tests/lang/func_get_arg.002.phpt
diff options
context:
space:
mode:
authorAnt Phillips <ant@php.net>2008-11-28 10:41:19 +0000
committerAnt Phillips <ant@php.net>2008-11-28 10:41:19 +0000
commit775389cd1d0dc08d54c17c6abac7e56d2eef9bcb (patch)
tree9c3c406032dbd86f26ce00ecc48c075fa0653d43 /tests/lang/func_get_arg.002.phpt
parentea5dd34c77aad29e783636faaabf6b361059be18 (diff)
downloadphp-git-775389cd1d0dc08d54c17c6abac7e56d2eef9bcb.tar.gz
Language tests: checked on PHP 5.2.6, 5.3 and 6.0 (Windows, Linux and Linux 64 bit).
Diffstat (limited to 'tests/lang/func_get_arg.002.phpt')
-rw-r--r--tests/lang/func_get_arg.002.phpt19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/lang/func_get_arg.002.phpt b/tests/lang/func_get_arg.002.phpt
new file mode 100644
index 0000000000..6ab4f95719
--- /dev/null
+++ b/tests/lang/func_get_arg.002.phpt
@@ -0,0 +1,19 @@
+--TEST--
+func_get_arg with variable number of args
+--FILE--
+<?php
+
+function foo($a)
+{
+ $b = func_get_arg(1);
+ var_dump($b);
+ $b++;
+ var_dump(func_get_arg(1));
+
+}
+foo(2, 3);
+echo "\n";
+?>
+--EXPECT--
+int(3)
+int(3)