Prev: If design patterns are not supposed to produce reusablecode then why use them?
Next: Happy New Year
From: paragasu on 31 Dec 2009 02:11 <?php /** this going to be a long wish from Malaysia * @author paragasu */ do { echo 'wish you .. \n'; } (date('Y') < 2010) ; exit (' Happy New Year'); ?>
From: "Bipper Goes!" on 31 Dec 2009 11:22 return ThankYou; Oh god I think I blowed it up. :) -Bip On Thu, Dec 31, 2009 at 1:11 AM, paragasu <paragasu(a)gmail.com> wrote: > <?php > > /** this going to be a long wish from Malaysia > * @author paragasu > */ > > do { echo 'wish you .. \n'; } (date('Y') < 2010) ; > exit (' Happy New Year'); > > > ?> > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > >
From: Paul Scott on 31 Dec 2009 11:39 Bipper Goes! wrote: > return ThankYou; > > > Oh god I think I blowed it up. I prefer: <?php while(date('Y') < 2010) ; exit (' Happy New Year'); -- -- Paul http://www.paulscott.za.net http://twitter.com/paulscott56 http://avoir.uwc.ac.za
From: Robert Cummings on 31 Dec 2009 11:52 Paul Scott wrote: > Bipper Goes! wrote: >> return ThankYou; >> >> >> Oh god I think I blowed it up. > > I prefer: > > <?php > while(date('Y') < 2010) ; > exit (' Happy New Year'); Oh dear... that's terribly inefficient... Here's a better stab: <?php sleep( strtotime( '2009-12-31 23:59:50' ) - time() ); for( $i = 10; $i >= 0; $i-- ) { echo $i ? "$i...\n" : "HAPPY NEW YEAR!\n"; sleep( 1 ); } ?> Cheers, Rob. -- http://www.interjinn.com Application and Templating Framework for PHP
From: "Bipper Goes!" on 31 Dec 2009 12:08 On Thu, Dec 31, 2009 at 10:52 AM, Robert Cummings <robert(a)interjinn.com>wrote: > > > Paul Scott wrote: > >> Bipper Goes! wrote: >> >>> return ThankYou; >>> >>> >>> Oh god I think I blowed it up. >>> >> >> I prefer: >> >> <?php >> while(date('Y') < 2010) ; >> exit (' Happy New Year'); >> > > > Oh dear... that's terribly inefficient... Here's a better stab: > > <?php > > sleep( strtotime( '2009-12-31 23:59:50' ) - time() ); > for( $i = 10; $i >= 0; $i-- ) > { > echo $i ? "$i...\n" : "HAPPY NEW YEAR!\n"; > sleep( 1 ); > } > > ?> > > Cheers, > Rob. > -- > http://www.interjinn.com > Application and Templating Framework for PHP > Efficiency, to me, was getting the email out in 15 seconds or less. ;)
|
Next
|
Last
Pages: 1 2 Prev: If design patterns are not supposed to produce reusablecode then why use them? Next: Happy New Year |