Showing posts with label simple class example in php. Show all posts
Showing posts with label simple class example in php. Show all posts

simple class example in php


simple class example in php

<?php
class Customer {
public $name;

public function setName($name) {
$this->name = $name;
}

public function getName() {
return $this->name;
}
}

$c = new Customer();
$c->setName("Sunil Bhatia");
echo $c->name; // this will work as it is public.
$c->name = "New Name" ; //
?>