Προς το περιεχόμενο

PHP stand alone...


daimonas

Προτεινόμενες αναρτήσεις

Δημοσ.

san interpreted script des to manual, kefalaio

"Chapter 23. Using PHP from the command line"

 

><?php
// script.php
// test it with: C:\php\php.exe -f script.php "hello world"
if ($argc != 2 || in_array($argv[1], array('--help', '-help', '-h', '-?'))) {
?>
This is a command line PHP script with one option.
 Usage:
 <?php echo $argv[0]; ?> <option>
 <option> can be some word you would like
 to print out. With the --help, -help, -h,
 or -? options, you can get this help.
<?php
} else {
   echo $argv[1];
}
?>

Αρχειοθετημένο

Αυτό το θέμα έχει αρχειοθετηθεί και είναι κλειστό για περαιτέρω απαντήσεις.

  • Δημιουργία νέου...