mirror of
https://github.com/php/presentations.git
synced 2026-04-25 16:28:17 +02: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();
|
|
?>
|