summaryrefslogtreecommitdiff
path: root/testfe
diff options
context:
space:
mode:
Diffstat (limited to 'testfe')
-rw-r--r--testfe21
1 files changed, 21 insertions, 0 deletions
diff --git a/testfe b/testfe
new file mode 100644
index 0000000000..5ae85511b5
--- /dev/null
+++ b/testfe
@@ -0,0 +1,21 @@
+<?
+
+$foo = array(7,"foo",3,array(1,2),4);
+
+//print $foo[1];
+
+for ($i=0; $i<3; $i++):
+
+foreach($a, $foo ) {
+ if (gettype($a)=="array") {
+ print "Array:\n";
+ foreach($b, $a) {
+ print "\t$b\n";
+ }
+ print "End of array.\n";
+ } else {
+ print "$a\n";
+ }
+// print "$a\n";
+}
+endfor;