<?php
class namaClass {
// Daftar properti
// Method- method
}
?>
class namaClass {
// Daftar properti
// Method- method
}
?>
Contoh :
<?php
class Orang
{
protected $nama; //properti
function setNama($nama) //method
{
$this->nama = $nama;
}
function getNama() //method
{
return $this->nama();
}
?>
Untuk memanggil method dalam sebuah class sama halnya dengan memanggil properti
<?php
include "classOrang.php";
$tono = new Orang;
$tono->setNama("Tono");
echo "Nama Saya : ".$tono->getNama();
?>
include "classOrang.php";
$tono = new Orang;
$tono->setNama("Tono");
echo "Nama Saya : ".$tono->getNama();
?>
Tidak ada komentar :
Posting Komentar