On Thu, 16 Aug 2001, Troels Arvin wrote the following to [EMAIL PROTECTED] :


> #if 0
>         } else {
>             char lenbuf[64];
> 
>             sprintf(lenbuf,"Content-Length: %d",Z_STRLEN_P(return_value));
>             sapi_add_header(lenbuf,strlen(lenbuf), 1);
> #endif
> 
> What does "#if 0" actually mean?
> 

#if 0
means the compiler will NEVER reach this code. Usually signifies
something that the developer knows is only half implemented, or
something.


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to