Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

clientip.php 228B

123456789
  1. <?php
  2. $client_ip = '';
  3. if (isset($_SERVER['X_HTTP_FORWARDED_FOR'])) {
  4. $client_ip = $_SERVER['X_HTTP_FORWARDED_FOR'];
  5. } else if (isset($_SERVER['REMOTE_ADDR'])) {
  6. $client_ip = $_SERVER['REMOTE_ADDR'];
  7. }
  8. echo $client_ip;