summaryrefslogtreecommitdiff
path: root/tests/foo3
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/foo3
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/foo3')
-rw-r--r--tests/foo343
1 files changed, 0 insertions, 43 deletions
diff --git a/tests/foo3 b/tests/foo3
deleted file mode 100644
index 08681b98c2..0000000000
--- a/tests/foo3
+++ /dev/null
@@ -1,43 +0,0 @@
-<?
-
-class foo {
- function foo() {
- print "foo()\n";
- }
- function bar(&$blah, $foobar=7) {
- $foobar += 19;
- }
-
- function hello_world() {
- return "Hello, World!";
- }
-
- function print_string($str) {
- print "$str\n";
- return 666;
- }
- var $foo;
- var $bar="this is a test...";
-};
-
-class bar {
- function foo($a,$b) {
- $a *= 3;
- return $a+$b;
- }
- function bar(&$blah, $foobar=7) {
- $foobar += 19;
- }
-
- var $foo;
- var $bar="this is a test...";
-};
-
-
-$b = new foo;
-$a = $b;
-print $a->print_string($a->hello_world())."\n";
-print $b->print_string($b->hello_world())."\n";
-$a->foo = 5;
-print $a->foo;
-print $a->foo();