News Feed
Jobs Feed
Sections




News Archive
Sean Coates' Blog:
Use `env`
May 21, 2012 @ 11:58:34

Sean Coates has posted a reminder for PHP developers (and really anyone executing command-line scripts) to use "env" instead of hard-coding the path to the PHP interpreter.

These [support] scripts often run PHP in Gimme Bar land, and we make extensive use of the shebang syntax that uses common Unix practice of putting #!/path/to/interpreter at the beginning of our command-line code. Clearly, this is nothing special -lots of people do exactly this same thing with PHP scripts. One thing I have noticed, though, is that many developers of PHP scripts are not aware of the common Unix(y) environment helper, env.

The "env" alias makes use of your currently defined include path to track down a PHP binary to use to execute the script. Since there's only a "best practices" approach to places to put PHP on a server, the "env" usage makes your script more portable and it's one less thing to remember to change.

If you distribute a PHP application that has command-line scripts and shebang lines, I encourage you to adopt the practice of making your shebang line "#!/usr/bin/env php". Note that this doesn't just apply to PHP of course, but I've seen a definite lack of env in the PHP world.
0 comments voice your opinion now!
env environment include path find executable shebang


blog comments powered by Disqus

Similar Posts

Richard Davey's Blog: A Guide to using PHP 5 Extensions on Windows

Padraic Brady's Blog: Compiling PHP for Windows Vista using Visual C++ Express 2008 - Seriously!

CodeGear.com: Borland Announced Delphi for PHP

PHPBuilder.com: PHP Simple HTML DOM Parser: Editing HTML Elements in PHP

Richard Lord's Blog: Zend_View helpers in include path


Community Events











Don't see your event here?
Let us know!


podcast zendframework2 application functional introduction development language community interview series release conference unittest testing phpunit tool example code opinion framework

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework