眠れなくて暇なのであの有名なセリフをPHPで書いてみた

<?php
require_once 'Haruhi/Haruhi';

$humanType = $_GET['human_type'];
$recommendedHumanType = array('宇宙人','未来人','異世界人','超能力者');
$haruhi = new Haruhi();
if ($humanType == 'ただの人間'){ //「ただの人間には」
	$haruhi->interestFlag = false; //「興味ありません」
}elseif (array_search($humanType, $recommendedHumanType) !== false){ //「この中に宇宙人、未来人、異世界人、超能力者がいたら、」
	$haruhi->interestFlag = true;
	$haruhi->join(); //「あたしのところに来なさい」
}else{
	//仕様待ち	
}
exit(); //「以上」