IpAddress.php

Gesponsorde koppelingen

PHP script bestanden

  1. Session.php
  2. SessionException.php
  3. tbCombineArray.php
  4. IpAddress.php

« Lees de omschrijving en reacties

Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
class IpAddress {
    
    private $_sIpAddress;

        public function __construct() {
            $this->_sIpAddress = $_SERVER['REMOTE_ADDR'];
        }


        public function getIpAddress() {
            if(filter_var($this->_sIpAddress, FILTER_VALIDATE_IP)) {
                return (string) $this->_sIpAddress;
            }
else {
                throw new SessionException('Global ip-address is not valid.', SessionException::E_CORE_ERROR);
                    return false;
            }
        }
}

?>

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.