PHP関数getenvで環境変数の値を取得する

<?php
// getenv() 使用例
$ip = getenv('REMOTE_ADDR’);
// または単純にすーバーグローバル($_SERVER または$_ENV)を使用
$ip = $_SERVER['REMOTE_ADDR’];
?>

echo getenv('userprofile’)

結果下記:

tuu

Source

Posted by arkgame