Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== command line php ====== See the current options with php --help. If you want to run a file from the command line instead of through the browser, simply do this:<code> php <filename> </code> ===== running without a file ===== The -r flag tells php to not require code tags, and allows code to be used instead of a file name. <code> php -r 'echo date("Y-m-d h:i:s", strtotime("2004-10-28T16:37:15Z")) . "\n";' </code> ===== interactive mode ===== PHP allows you to have commands executed as you type them. To start in interactive mode, use the -a switch. <code php> $ php -a Interactive mode enabled <? ob_start(); $now = time(); echo date("Y-m-d", $now); exit("\n"); </code> (output will be the current date) ===== External Links ===== * http://us2.php.net/features.commandline docs/programming/php/command_line.txt Last modified: 2009/01/10 23:27by billh