summaryrefslogtreecommitdiff
path: root/Zend/tests/ns_028.inc
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2007-09-28 19:52:53 +0000
committerDmitry Stogov <dmitry@php.net>2007-09-28 19:52:53 +0000
commitf32ffe9b430b718628f868e449c1fcbdc8ec9ef6 (patch)
treed46f435df40bcfe67bbab884f612a3551448431e /Zend/tests/ns_028.inc
parent1674976346b5d8294eae99ec395f101f14405e2d (diff)
downloadphp-git-f32ffe9b430b718628f868e449c1fcbdc8ec9ef6.tar.gz
Namespaces
Diffstat (limited to 'Zend/tests/ns_028.inc')
-rwxr-xr-xZend/tests/ns_028.inc15
1 files changed, 15 insertions, 0 deletions
diff --git a/Zend/tests/ns_028.inc b/Zend/tests/ns_028.inc
new file mode 100755
index 0000000000..5bd3ae7765
--- /dev/null
+++ b/Zend/tests/ns_028.inc
@@ -0,0 +1,15 @@
+<?php
+namespace Foo;
+
+class Foo {
+ function __construct() {
+ echo "Method - ".__CLASS__."::".__FUNCTION__."\n";
+ }
+ static function Bar() {
+ echo "Method - ".__CLASS__."::".__FUNCTION__."\n";
+ }
+}
+
+function Bar() {
+ echo "Func - ".__FUNCTION__."\n";
+}