Run ❯
Get your
own PHP
server
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
name = $name; $this->color = $color; } function __destruct() { echo "Name: " . $this->name . ". Color: " . $this->color .".
"; } } $apple = new Fruit('Apple', 'Red'); $banana = new Fruit('Banana', 'Yellow'); ?>
Name: Banana. Color: Yellow.
Name: Apple. Color: Red.