', '<', '^', '-', 'X', 'T', 'q']; $mouths = ['w', 'u', 'o', '_', '-', 'x', '///', 'ω']; $extras = [['', ''], ['', ''], ['', ''], ['', '-☆'], ['=', '='], ['d', 'b♪'], ['ξ(', ')ξ']]; $eye = $eyes[rand(0, count($eyes) - 1)]; $mouth = ''; do { $mouth = $mouths[rand(0, count($mouths) - 1)]; } while(strcasecmp($mouth, $eye) == 0); $extra = $extras[rand(0, count($extras) - 1)]; return $extra[0] . $eye . $mouth . $eye . $extra[1]; } // This is my fallback error page if($_SERVER['HTTP_HOST'] != 'uwu.xn--rck9c.xn--tckwe') http_response_code(404); // Return source code if(isset($_GET['source'])) { header("Content-Type: text/plain"); die(file_get_contents(basename($_SERVER['PHP_SELF']))); } // Plaintext if(isset($_GET['raw'])) { header("Content-Type: text/plain"); die(face()); } $face = face(); ?>