内部配列ポインタを進める
例)
if(条件文) break; //ループを抜ける next($array); //次のレコードへ
<?php $transport = array('one', 'two', 'three', 'four'); $mode = current($transport); // $mode = 'one'; $mode = next($transport); // $mode = 'two'; $mode = next($transport); // $mode = 'three'; $mode = prev($transport); // $mode = 'two'; $mode = end($transport); // $mode = 'four'; ?>
PHPでリモートホスト情報を取得する際、以下のようにします。
$_SERVER["REMOTE_HOST"];
ただし、apacheの設定ファイルhttpd.conf
のHostnameLookups
をOn
にしないと表示されません。