Home  >  Article  >  Backend Development  >  PHP command line

PHP command line

jacklove
jackloveOriginal
2018-06-11 23:37:512002browse

PHP command line

php command

jinxu@jinxu-ubuntu:~$ php -h
Usage: php [options] [-f]  [--] [args...]
   php [options] -r  [--] [args...]
   php [options] [-B ] -R  [-E ] [--] [args...]
   php [options] [-B ] -F  [-E ] [--] [args...]
   php [options] -S : [-t docroot] [router]
   php [options] -- [args...]
   php [options] -a
  -a               Run interactively  -c | Look for php.ini file in this directory  -n               No configuration (ini) files will be used  -d foo[=bar]     Define INI entry foo with value 'bar'  -e               Generate extended information for debugger/profiler  -f         Parse and execute .  -h               This help  -i               PHP information  -l               Syntax check only (lint)  -m               Show compiled in modules  -r         Run PHP  without using script tags   -B   Run PHP  before processing input lines  -R         Run PHP  for every input line  -F         Parse and execute  for every input line  -E     Run PHP  after processing all input lines  -H               Hide any passed arguments from external tools.  -S : Run with built-in web server.  -t      Specify document root  for built-in web server.  -s               Output HTML syntax highlighted source.  -v               Version number  -w               Output source with stripped comments and whitespace.  -z         Load Zend extension .
  args...          Arguments passed to script. Use -- args when first argument
                   starts with - or script is read from stdin
  --ini            Show configuration file names
  --rf       Show information about function .  --rc       Show information about class .  --re       Show information about extension .  --rz       Show information about Zend extension .  --ri       Show configuration for extension .

As a local server

  1. Enter the directory where the project is located

  2. shift Right click to open the command line

  3. Execute php -S localhost:8000

  4. Open localhost:8000

    # in the browser
##Execute script

Execute

php [options] [-f] 28897b20adb25fbae118a3f80f538dec [--] [args...]

Interactive command

Execute

php -a

PHP command line

php command

jinxu@jinxu-ubuntu:~$ php -h
Usage: php [options] [-f]  [--] [args...]
   php [options] -r  [--] [args...]
   php [options] [-B ] -R  [-E ] [--] [args...]
   php [options] [-B ] -F  [-E ] [--] [args...]
   php [options] -S : [-t docroot] [router]
   php [options] -- [args...]
   php [options] -a
  -a               Run interactively  -c | Look for php.ini file in this directory  -n               No configuration (ini) files will be used  -d foo[=bar]     Define INI entry foo with value 'bar'  -e               Generate extended information for debugger/profiler  -f         Parse and execute .  -h               This help  -i               PHP information  -l               Syntax check only (lint)  -m               Show compiled in modules  -r         Run PHP  without using script tags   -B   Run PHP  before processing input lines  -R         Run PHP  for every input line  -F         Parse and execute  for every input line  -E     Run PHP  after processing all input lines  -H               Hide any passed arguments from external tools.  -S : Run with built-in web server.  -t      Specify document root  for built-in web server.  -s               Output HTML syntax highlighted source.  -v               Version number  -w               Output source with stripped comments and whitespace.  -z         Load Zend extension .
  args...          Arguments passed to script. Use -- args when first argument
                   starts with - or script is read from stdin
  --ini            Show configuration file names
  --rf       Show information about function .  --rc       Show information about class .  --re       Show information about extension .  --rz       Show information about Zend extension .  --ri       Show configuration for extension .

As a local server

  1. Enter the directory where the project is located

  2. right-click to open the command line

  3. Execute php -S localhost:8000

  4. Open localhost:8000 in the browser

Execute the script

Execute

php [options] [-f] 28897b20adb25fbae118a3f80f538dec [--] [args...]

Interactive command

execution

php -a

## This article introduces the PHP command line. For more related content, please pay attention to the PHP Chinese website.

Related recommendations:

PHP Gets Client Information


PHP time processing


php edit user information


The above is the detailed content of PHP command line. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:php basic syntaxNext article:php basic syntax