From: Stig S. Bakken [mailto:[EMAIL PROTECTED]]
> Did anyone come up with this one before or do I have a "first post"? :-)
> 
> #!/bin/sh
> exec php -d output_buffering=1 $0 $@
> <?php
> ob_end_clean();
> print "Hello World!\n";
> ?>

Or the shorter (and faster) version:

#!/usr/local/bin/php -d output_buffering=1
<?php
ob_end_clean();
print "Hello World!\n";
?>

Or perhaps you had something else in mind?

I believe most (all?) modern Unix implementations do #! handling
in the kernel's exec() function, so you avoid the /bin/sh startup.



-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to