Home > Backend Development > PHP Tutorial > Common php commands_PHP tutorial

Common php commands_PHP tutorial

WBOY
Release: 2016-07-13 10:29:18
Original
1295 people have browsed it

1.php -v View version number

[root@rs-2 lib]# php -v

PHP 5.5.11 (cli) (built: Apr 29 2014 12:35:52)

Copyright (c) 1997-2014 The PHP Group

Zend Engine v2.5.0, Copyright (c) 1998-2014 Zend Technologies


2.php -h View help


3.php -m View installed modules

[root@rs-2 lib]# php -m

[PHP Modules]

Core

type


4.php -i View php information (checking php.ini is very convenient)

[root@rs-2 lib]# php -i | grep php.ini

Configuration File (php.ini) Path => /usr/local/lib

Loaded Configuration File => /usr/local/lib/php.ini


5.php --ini display configuration file name

[root@rs-2 ~]# php --ini

Configuration File (php.ini) Path: /usr/local/lib

Loaded Configuration File: /usr/local/lib/php.ini

Scan for additional .ini files in: (none)

Additional .ini files parsed: (none)


6.php -f Execute php file

[root@rs-2 phpTest]# php -f helloworld.php

helloword


For more usage tips, please see php -h

[root@rs-2 ~]# php -h

Usage: php [options] [-f] [--] [args...]

php [options] -r [--] [args...]

php [options] [-B ] -R [-E <end_code>] [--] [args...]</end_code>

php [options] [-B ] -F [-E <end_code>] [--] [args...]</end_code>

php [options] -S : [-t docroot]

php [options] -- [args...]

php [options] -a


-a Run interactively

-c | Look for php.ini file in this directory

-n No php.ini file 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 <code> without using script tags ..?>

-B Run PHP before processing input lines

-R Run PHP <code> 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 .



www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/777561.htmlTechArticle1.php -v View version number [root@rs-2 lib]# php -v PHP 5.5.11 (cli) (built: Apr 29 2014 12:35:52) Copyright (c) 1997-2014 The PHP Group Zend Engine v2.5.0, Copyright (c) 1998-2014 Ze...
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template