From: paragasu on
<?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
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

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


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
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. ;)