Guest User

Untitled

a guest
Nov 17th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <?php
  2. function index() {
  3. echo "Hello.World";
  4. }
  5.  
  6. function test($param = null) {
  7. echo "This is Function Test.<br>";
  8. echo "p1:".$param["p1"];
  9. echo "<br>";
  10. echo "p2:".$param["p2"];
  11. }
  12. ?>
Add Comment
Please, Sign In to add comment