Hudzilla.org - the homepage of Paul Hudson
Contents > Alternative PHP uses > Command-line scripting Wish List | Report Bug | About Me ]

21.2.7     Sending code direct to PHP

This is NOT the latest copy of this book; click here for the latest version.

For more advanced users, there is one more way to take advantage of PHP for console programming: passing code directly to the PHP CLI binary.

Through the use of the -r argument, it becomes possible to enter PHP code on the command line. The opening and closing PHP tags are not required, as the -r tag is designed to execute pure PHP code.

Here is a very basic example of -r usage:

php -r 'phpinfo();'

As you can see, you get the PHP module information printed straight to the console. However, it is a very basic example, and does not highlight the key problem of sending code direct to PHP with the -r argument.

The problem, which may cause many headaches because of it is elusive nature, is that many shells (I use bash, which is "affected"), have variables of their own, and, if you use double quotes, will perform variable substitution even before PHP gets hold of the code. As a result, this seemingly innocuous code will fail:

php -r "$abc = 'def';"

Bash, and many other shells, will evaluate $foo and find it unset, and will pass a blank on to PHP. Therefore, what PHP will see is this:

= 'def';

The solution to the problem, as I mentioned already, is to use single quotes with -r. However, you will need to constantly be on guard when using backslashes for escaping, or, even harder, trying to get shell variables in your code.





<< 21.2.6 Getting into the swing of things   21.2.8 The grand finale >>
Table of Contents
Want to see this stuff in print? PHP in a Nutshell takes the core topics covered here, adds in thousands of edits from the editorial team and myself, and combines them to make an unbeatable reference for PHP programmers at all levels.



My latest book has hundreds more tips on how to use PHP, Apache, and MySQL, plus Perl, Python, shell scripts, performance tuning, and more!



Top-right shadow
 
Bottom-left shadow Bottom shadow

Comments from other readers
Be the first to add a comment to this chapter!



Add comment
Please note that by posting a comment here you are committing it to the public domain. This is important so that others can make use of your code themselves, and also so that I can incorporate helpful notes directly into the main text. Comments are limited to 2000 characters in length.

If you are reporting an error in the content, please tell me directly.

Your name/email address:
Your comment:
 
Now, in order to verify that you're a real person, please answer this simple question: what is zero plus two?
The answer is:
(please write in
numbers, eg 19)


Top-right shadow
 
Bottom-left shadow Bottom shadow