PHPをコマンドラインで利用する時のヘルプの表示方法

PHPをコマンドラインで実行する時、例えば、WindowsのコマンドプロンプトでPHPを実行する時は、コマンドラインでの操作方法がよく分からなくなってヘルプを参照したいことがある。

コマンドラインでPHPのヘルプを参照したい場合は、以下のコマンドのいずれかを実行するとよい。

php -h

php -?

php --help

コマンドを実行すると、PHPをコマンドラインで実行した時に利用できるコマンドのオプションとオプションの簡単な説明一覧を表示できる。

《Windows版PHP 5.4.5で「help -h」を実行した結果》

c:\php-5.4.5-Win32-VC9-x86>php -h
Usage: php [options] [-f] <file> [--] [args...]
php [options] -r <code> [--] [args...]
php [options] [-B <begin_code>] -R <code> [-E <end_code>] [--] [args...]
php [options] [-B <begin_code>] -F <file> [-E <end_code>] [--] [args...]
php [options] -- [args...]
php [options] -a

-a Run interactively
-c <path>|<file> 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 <file> Parse and execute <file>.
-h This help
-i PHP information
-l Syntax check only (lint)
-m Show compiled in modules
-r <code> Run PHP <code> without using script tags <?..?>
-B <begin_code> Run PHP <begin_code> before processing input lines
-R <code> Run PHP <code> for every input line
-F <file> Parse and execute <file> for every input line
-E <end_code> Run PHP <end_code> after processing all input lines
-H Hide any passed arguments from external tools.
-S <addr>:<port> Run with built-in web server.
-t <docroot> Specify document root <docroot> for built-in web server.
-s Output HTML syntax highlighted source.
-v Version number
-w Output source with stripped comments and whitespace.
-z <file> Load Zend extension <file>.

args... Arguments passed to script. Use -- args when first argument
starts with - or script is read from stdin

--ini Show configuration file names

--rf <name> Show information about function <name>.
--rc <name> Show information about class <name>.
--re <name> Show information about extension <name>.
--rz <name> Show information about Zend extension <name>.
--ri <name> Show configuration for extension <name>.

《参考》php.netに記載されている情報
http://php.net/manual/ja/features.commandline.options.php

コマンドラインオプション

PHP バイナリにより提供されるコマンドラインオプションの一覧は、 -hスイッチを指定して PHP を実行することにより いつでも調べることができます。

前へ

横浜関内駅から新橋駅まで移動する方法

次へ

PHPエラー「Call to undefined function mb_language()」の原因と解決方法