Bu basit örnekte parametreli fonksiyon yöntemi kullanarak satranç tahtası oluşturma işlemini aşağıdaki adımları takip ederek yapacağız.
Adım 1: İlk olarak fonksiyonun başlık bilgisini oluşturuyoruz.
1 2 3 4 5 6 7 8 9 |
<?php function satrancTahtasiOlustur($satir,$sutun){ { ?> |
Adım 2: Yukarıdaki gibi oluşturduğumuz fonksiyonunu aşağıdaki gibi güncelliyoruz.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
<?php function satrancTahtasiOlustur($satir,$sutun){ echo "<table width=400 height=400 border=1>"; for($i=1;$i<=$satir;$i++) //satır { echo "<tr>"; for($j=1;$j<=$sutun;$j++) //sütun { $kutu=$i+$j; if($kutu%2==1) { echo "<td bgcolor=black></td>"; } else{ echo "<td></td>";} } echo "</tr>"; } echo "</table>"; } ?> |
Adım 3: Son olarak da oluşturduğumuz fonksiyonu aşağıdaki gibi kullanıyoruz.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
<?php function satrancTahtasiOlustur($satir,$sutun){ echo "<table width=400 height=400 border=1>"; for($i=1;$i<=$satir;$i++) //satır { echo "<tr>"; for($j=1;$j<=$sutun;$j++) //sütun { $kutu=$i+$j; if($kutu%2==1) { echo "<td bgcolor=black></td>"; } else{ echo "<td></td>";} } echo "</tr>"; } echo "</table>"; } //Kullanımı satrancTahtasiOlustur(8,8); ?> |
Çıktı: