mirror of
https://github.com/php/presentations.git
synced 2026-03-24 15:42:33 +01:00
17 lines
204 B
PHP
17 lines
204 B
PHP
<?php
|
|
class banana_v5 {
|
|
function __construct() {
|
|
echo "peel..peel..";
|
|
echo "\n<br />\n";
|
|
}
|
|
|
|
function eat() {
|
|
echo "chewy..chewy..";
|
|
echo "\n<br />\n";
|
|
}
|
|
}
|
|
|
|
$b = new banana_v5();
|
|
$b->eat();
|
|
?>
|