Re: whoami explanation

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Tue, 2009-03-03 at 10:42 -0500, PJ wrote:
> This really needs some explanation
> I found this on the web:
> <?php echo `whoami`; ?>
> with it there was the comment "the direction of those single-quotes matters"
> (WHY ?)
> and it works....
> 
> But this (_*FROM THE PHP MANUAL***_ * -  exec()* executes the given
> /command/ ) does not,
> COPIED AND PASTED:
> |<?php
> // outputs the username that owns the running php/httpd process
> // (on a system with the "whoami" executable in the path)
> echo exec('whoami');
> ?> |
> What is going on here?
> And I often find such discrepancies in examples - and some wonder why I
> seem to be so stupid... and don't know the fundamentals... :-\

Those are backticks. They execute a program via the shell. If you drop
to the shell and type whoami at the prompt you will get the same result.
The backticks operator returns the shell's output which is why it can be
echoed.

Cheers,
Rob.
-- 
http://www.interjinn.com
Application and Templating Framework for PHP


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux