summaryrefslogtreecommitdiff
path: root/tests/testfunc2
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2002-11-15 11:55:58 +0000
committerSVN Migration <svn@php.net>2002-11-15 11:55:58 +0000
commit5bc46bd808cdb47a06c9c9063d287f99201c0419 (patch)
treed95f02f9ec11e86e4da7bda4e41f2cd45a25ca6f /tests/testfunc2
parent66ec203e70cb4cee6cd91449ffb403731f3298e5 (diff)
downloadphp-git-BEFORE_RENAMING.tar.gz
This commit was manufactured by cvs2svn to create tag 'BEFORE_RENAMING'.BEFORE_RENAMING
Diffstat (limited to 'tests/testfunc2')
-rw-r--r--tests/testfunc219
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/testfunc2 b/tests/testfunc2
deleted file mode 100644
index 42f91f2bae..0000000000
--- a/tests/testfunc2
+++ /dev/null
@@ -1,19 +0,0 @@
-<?
-function foo($i)
-{
- if ($i) {
- $a = "zeev";
- } else {
- $b = "andi";
- }
-}
-
-
-function bar($a)
-{
- foo($a);
-}
-
-for ($i=0; $i<10000; $i=$i+1) {
- bar($i);
-}