diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/test.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/test.php b/test/test.php new file mode 100644 index 0000000..08947c5 --- /dev/null +++ b/test/test.php @@ -0,0 +1,13 @@ +<?php +$lol->a="a1"; +$lol->b="b1"; +$lol->c="c1"; + +echo "<b>Stuff: </b><br>"; +print_r($lol); +echo "<br><b>More stuff: </b><br>"; +var_dump($lol); +echo "<br><b>Even more stuff: </b><br>"; +foreach ($lol as $key => $value) { + echo "$key -> $value<br>"; +} |