punjangga

function - contoh fungsi

Jun 9th, 2016
310
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <?php
  2. function judul(){
  3. echo "<h2>Contoh mendefinisikan dan memanggil fungsi di PHP </h2>";
  4. }
  5.  
  6. function kaliAngka($x, $y){
  7. return $x * $y;
  8. }
  9.  
  10. judul();
  11.  
  12. $hasil = kaliAngka(2,5);
  13. echo "Hasil dari 2 X 5 = " .$hasil;
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment