yoscruizer

3argumen

Jan 30th, 2019
550
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php
  2. echo nama_lengkap("Rajin", "Copas", "Blogspot.com");
  3. function nama_lengkap($n1, $n2, $n3)
  4. {
  5. $n1 = ucfirst(strtolower($n1));
  6. $n2 = ucfirst(strtolower($n2));
  7. $n3 = ucfirst(strtolower($n3));
  8. return $n1 . " " . $n2 . " " . $n3;
  9. }
  10. //yoscruizer
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment