How to implement Association , aggregation and composition in php. Please explain with complete example.
Code:
<?php
// composition and aggregation demo
class Car{
function __construct() {
$engineObj = new Engine();
print "In constructor >> Car <br/>";
}
function __destruct() {
Leave a comment: