Last active
January 10, 2018 19:14
-
-
Save lahmacun/d0a708e0599df6088e292aac67aa4d7c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function topla() { | |
$toplam = 0; | |
$argumanSayisi = func_num_args(); | |
for ($i = 0; $i < $argumanSayisi; $i ++) { | |
$toplam += func_get_arg($i); | |
} | |
return $toplam; | |
} | |
// Ornek Kullanim | |
// echo topla(5, 10, 15); // 30 dondurur |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment