Dinosaur kigurumi! The most ferocious fancy dress dinosaur costume to ever walk the planet.
This all-in-one kigurumi dinosaur costume is one of our favourites. It has a big green tail, armour plating spikes all the way up the back, and a really mean dinosaur face. It is also probably the most comfy dinosaur costume we have ever seen.
This kigurumi dinosaur costume comes all the way from Japan. 'Kigurumi ', is a Japanese word which means a stuffed toy that you wear or animal pyjamas. Great for fancy dress dinosaur costume parties and festivals, snug pyjama schlumping, or dino-fabulous streetwear.
Material: 100% Polyester fleece. Soft, thick and high quality. Machine washable.
Size: One size. It is about 150cm from the dinosaur costume's ankle to its shoulders, meaning that it will fit someone up to 6'2" tall. Don't worry if you are as as small as 5'5" - they look great baggy and the cuffs roll up easily.
Delivery: Roughly £5 to the UK ; $15 to the USA; and €9 to the EU.
Customer Reviews Write an online review and share your thoughts with other shoppers!
@@username@@ @@message@@
@@formatteddate@@
"; /* PLEASE DON'T MODIFY THE CODE BELOW THIS COMMENT */ class SEO_FBComments { const GRAPH_COMMENTS_URL = "https://graph.facebook.com/comments/?ids="; private $pattern; private $pageUrl; /** * @param string $pattern * @param bool $debug */ public function __construct($pattern = null, $debug = null) { $this->pageUrl = $this->getSelfUrl(); $this->pattern = $this->getPattern($pattern); if(is_null($debug)) $debug = ($_REQUEST["debug"] == "1"); $this->echoComments(); } function echoComments() { $oldTimezone = ini_get("date.timezone"); ini_set("date.timezone", "UTC"); $comments = $this->GetFBCommentsHTML($this->pageUrl, $this->pattern); $comments = ""; ini_set("date.timezone", $oldTimezone); echo $comments; } function getPattern($pattern) { global $STD_PATTERN; if(is_null($pattern)) $pattern = $_REQUEST["pattern"]; if(!$pattern) $pattern = $STD_PATTERN; return $pattern; } /** * * Retrieves a list of Facebook comments * from the Comments Plugin * * @param string $ids * @return array */ function GetFBComments($ids) { $url = self::GRAPH_COMMENTS_URL . $ids; $content = file_get_contents($url); $comments = json_decode($content); $comments = $comments->$ids->data; return $comments; } function dayDiff($date1, $date2 = null) { if(is_null($date2)) $date2 = time(); $dateDiff = abs($date1 - $date2); $fullDays = floor($dateDiff / (60 * 60 * 24)); return $fullDays; } function formatDate($date) { $dateFormat = "F j \a\\t g:ia"; $date = strtotime($date); $daysBefore = $this->dayDiff($date); if($daysBefore > 6) $formatteddate = date($dateFormat, $date); else { switch ($daysBefore) { case 0: $day = "Today"; break; case 1: $day = "Yesterday"; break; default: $day = date("l", $date); break; } $formatteddate = "$day at " . date("g:ia", $date); } return $formatteddate; } function getComment($data) { $username = $data->from->name; $userid = $data->from->id; $messageid = $data->id; $message = $data->message; $date = $data->created_time; $formatteddate = $this->formatDate($date); $USER = json_decode(file_get_contents("https://graph.facebook.com/$userid")); $userpicture = "https://graph.facebook.com/$userid/picture"; $userlink = "http://www.facebook.com/" . $USER->username; $comment = preg_replace("/@@([^@]+)@@/e", "$\\1", $this->pattern); return $comment; } function getComments($comments) { $html = ""; foreach ($comments as $data) { $item = $this->getComment($data); $html .= $item; if($data->comments) $html .= $this->getComments($data->comments->data); } return $html; } function getSelfUrl() { $protocol = ($_SERVER["SERVER_PORT"] == "80") ? "http" : "https"; return "$protocol://" . $_SERVER["HTTP_HOST"] . $_SERVER["PHP_SELF"]; } function GetFBCommentsHTML($ids, $pattern) { $comments = $this->getFBComments($ids); $html = $this->getComments($comments); return $html; } } new SEO_FBComments; ?>