| ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot |
getenv(PHP 4, PHP 5, PHP 7) getenv — 環境変数の値を取得する 説明
string getenv
( string
$varname
[, bool $local_only = false
] )環境変数の値を取得します。 phpinfo() を使えば、すべての環境変数の一覧を見ることができます。 これらの変数の多くは、 » RFC 3875 の section 4.1, "Request Meta-Variables" に挙げられているものです。 パラメータ
返り値
変更履歴
注意警告
If PHP is running in a SAPI such as Fast CGI, this function will
always return the value of an environment variable set by the SAPI,
even if putenv() has been used to set a local
environment variable of the same name. Use the 例
例1 getenv() の例
<?php |
各種マニュアル:
PHPマニュアル |
PEARマニュアル |
Smarty(英語)マニュアル |
PHP-GTKマニュアル |
「getenv - 環境変数の値を取得する」をGoogle検索
|