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.
123456789 |
- <?php
-
- $client_ip = '';
- if (isset($_SERVER['X_HTTP_FORWARDED_FOR'])) {
- $client_ip = $_SERVER['X_HTTP_FORWARDED_FOR'];
- } else if (isset($_SERVER['REMOTE_ADDR'])) {
- $client_ip = $_SERVER['REMOTE_ADDR'];
- }
- echo $client_ip;
|