Page 1 of 1
[56K WARN] php.net, am I going mad?
Posted: Fri Apr 01, 2005 10:14 am
by choppsta
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!!?!?!?!!!

Posted: Fri Apr 01, 2005 10:15 am
by JayBird
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
Posted: Fri Apr 01, 2005 10:42 am
by choppsta
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.
Posted: Fri Apr 01, 2005 2:02 pm
by SystemWisdom
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??

Posted: Fri Apr 01, 2005 3:45 pm
by timvw
phpinfo gave me a dog as logo..

Posted: Wed Apr 06, 2005 6:56 pm
by evilmonkey
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.