<?php
$relatives = array('mother', 'father', 'sister', 'brother','uncle', 'auntie');
$verbs = array('dislikes', 'sits on', 'licks', 'sucks', 'looks like', 'does', 'discusses the pros and cons of Web 2.0', 'loves', 'caresses', 'slides onto', 'hates', 'kisses', 'learns PHP with', 'has an AJAX interface with');
$animals = array('dogs', 'cats', 'horses', 'birds', 'giraffes', 'elephants', 'hippos', 'hamsters', 'gerbils', 'monkeys');
function insult($secondary_person)
{
global $relatives;
global $verbs;
global $animals;
$r_size = sizeof($relatives) - 1;
$v_size = sizeof($verbs) - 1;
$a_size = sizeof($animals) - 1;
$r_rand = rand(0, $r_size);
$v_rand1 = rand(0, $v_size);
$v_rand2 = rand(0, $v_size);
$a_rand = rand(0, $a_size);
$insult = "Your {$relatives[$r_rand]} {$verbs[$v_rand1]} $secondary_person and {$verbs[$v_rand1]} {$animals[$a_rand]}";
return $insult;
}
class Greeting
{
function Greeting()
{
echo "Hello World!";
}
}
interface Actor
{
public function speak();
public function meet($person);
}
class Franky implements Actor
{
private $person;
public function meet($person){
$this->person = $person;
}
public function speak($insult_them = false){
if($this->person == null){
$greet = new Greeting();
echo '<br />';
}
else {
echo 'Hello '.$this->person.'!<br />';
if ($insult_them)
{
echo insult($this->person) . '<br />';
}
}
}
}
$h = new Franky;
$h->speak();
$h->meet('Jesus');
$h->speak(true);
?>
edit: i am not responsible for the output of this sample program. if you find it offends, then blame PHP, not me. everything in the above code is clean, non-offensive English.