Source Code : Inheriting a Shape Class
PHP Is Open Source Programming Language You Can Download and use It, You required xampp server and wamp server . You download From xampp server from https://www.apachefriends.org/download.html.
Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://php.net/.
Click Here or search from google with Libraries Name you get jar file related it and also http://php.net/ is a official site
Inheriting a Shape Class
<?php
class shape {
var $x;
var $y;
function shape() {
print("Shape constructor called <br />");
}
function get_x() {
return $this->x;
}
function get_y() {
return $this->y;
}
function set_x($x) {
$this->x = $x;
}
function set_y($y) {
$this->y = $y;
}
function move_to($x, $y) {
$this->x = $x;
$this->y = $y;
}
function print_data() {
print("Shape is currently at " . $this->get_x() . ":" .
$this->get_y() . "<br />");
}
function draw()
{}
}
class rectangle extends shape
{
function rectangle($x, $y) {
$this->move_to($x, $y);
}
function draw() {
print("Drawing rectangle at " . $this->x . ":" .
$this->y . "<br />");
}
function print_data() {
print("Rectangle currently at " . $this->get_x() . ":" .
$this->get_y() . "<br />");
}
}
$rect1 = new rectangle(100, 100);
$rect1->draw();
$rect1->print_data();
?>
Thank with us