diff options
author | Kyle Kaminski <kyle@xenomedia.com> | 2014-04-09 22:02:09 -0500 |
---|---|---|
committer | Kyle Kaminski <kyle@xenomedia.com> | 2014-04-09 22:02:09 -0500 |
commit | af5272c6784050a97ce968d067274b86099fc3af (patch) | |
tree | 916d087495e8e67647597931ddb0fed79aa58544 /scratch.php | |
parent | 55cfec6918fca9d3790ec8ab231d0178349fe2fa (diff) | |
download | phpsandbox-af5272c6784050a97ce968d067274b86099fc3af.tar.gz phpsandbox-af5272c6784050a97ce968d067274b86099fc3af.tar.bz2 phpsandbox-af5272c6784050a97ce968d067274b86099fc3af.zip |
some oo concepts
Diffstat (limited to 'scratch.php')
-rw-r--r-- | scratch.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scratch.php b/scratch.php new file mode 100644 index 0000000..9c47450 --- /dev/null +++ b/scratch.php @@ -0,0 +1,7 @@ +<?php + +function foo() { + echo "hello, world!" . PHP_EOL; +} + +call_user_func("foo"); |