mirror of
https://github.com/php/presentations.git
synced 2026-03-24 07:32:11 +01:00
22 lines
273 B
PHP
22 lines
273 B
PHP
<?php
|
|
class banana {
|
|
function __construct() {
|
|
echo "peel..peel..";
|
|
echo "\n<br />\n";
|
|
}
|
|
|
|
function eat() {
|
|
echo "chewy..chewy..";
|
|
echo "\n<br />\n";
|
|
}
|
|
|
|
function __destruct() {
|
|
echo "slip... crack!";
|
|
echo "\n<br />\n";
|
|
}
|
|
}
|
|
|
|
$b = new banana();
|
|
$b->eat();
|
|
?>
|