phpで現在URLを出力する
<?php if ( isset($_SERVER['HTTPS']) and $_SERVER['HTTPS'] == 'on' ) { $protocol = 'https://'; } else { $protocol = 'http://'; } echo ($protocol . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]); ?>
URLでの出し分けのときなんかに
phpで現在URLを出力する
<?php if ( isset($_SERVER['HTTPS']) and $_SERVER['HTTPS'] == 'on' ) { $protocol = 'https://'; } else { $protocol = 'http://'; } echo ($protocol . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]); ?>
URLでの出し分けのときなんかに