Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.
Moderator: General Moderators
choppsta
Forum Contributor
Posts: 114 Joined: Thu Jul 03, 2003 11:11 am
Post
by choppsta » Fri Apr 01, 2005 10:14 am
I've just popped onto
http://www.php.net to look something up and to my surprise there's a picture of a dog where the PHP logo normally is...
I then had a look at
http://uk.php.net and there's now a rabbit...
Please, somebody tell me I'm not going insane!!?!?!?!!!
JayBird
Admin
Posts: 4524 Joined: Wed Aug 13, 2003 7:02 am
Location: York, UK
Contact:
Post
by JayBird » Fri Apr 01, 2005 10:15 am
Looks normal to me mate........
Only kidding...it is an easter egg in php.
I think you'll find the same thing happens if you do a phpinfo(); script.
Another one is this -
http://mboedick.org/034/29/php-easter-egg
Mark
choppsta
Forum Contributor
Posts: 114 Joined: Thu Jul 03, 2003 11:11 am
Post
by choppsta » Fri Apr 01, 2005 10:42 am
Thank god for that, I thought I'd finally lost it!!!
That is rather funny, in a "the people that come up with this stuff are really quite strange" kinda way.
SystemWisdom
Forum Commoner
Posts: 69 Joined: Sat Mar 26, 2005 5:54 pm
Location: A Canadian South of the 49th Parallel
Post
by SystemWisdom » Fri Apr 01, 2005 2:02 pm
I like checking for those Easter-Eggs in my script and outputting my own Egg per say, what I have is basically:
Code: Select all
// PHP Credits Easter-Egg
if( isset( $_REQUEST['PHPB8B5F2A0-3C92-11d3-A3A9-4C7B08C10000'] ) )
{
// Output own egg here..
}
// PHP Logo Easter-Egg
if( isset( $_REQUEST['PHPE9568F36-D428-11d2-A769-00AA001ACF42'] ) )
{
// Output own egg here..
}
But I only know of those 2.. Does anyone know of any more??
timvw
DevNet Master
Posts: 4897 Joined: Mon Jan 19, 2004 11:11 pm
Location: Leuven, Belgium
Post
by timvw » Fri Apr 01, 2005 3:45 pm
phpinfo gave me a dog as logo..
evilmonkey
Forum Regular
Posts: 823 Joined: Sun Oct 06, 2002 1:24 pm
Location: Toronto, Canada
Post
by evilmonkey » Wed Apr 06, 2005 6:56 pm
Whoa, that's cool, never knew that.
Can someone check in thier code how it's done, maybe we can add some more Easter Eggs...haha this is really cool.