Newscoop\Entity\User\Ip::getIp PHP Method

getIp() public method

Get ip
public getIp ( ) : string
return string
    public function getIp()
    {
        return long2ip($this->ip);
    }

Usage Example

Exemplo n.º 1
0
 /**
  * Get json representation of subscription ip
  *
  * @param Newscoop\Entity\User\Ip $ip
  * @return array
  */
 public function SubscriptionIpJson(\Newscoop\Entity\User\Ip $ip)
 {
     return array('ip' => $ip->getIp(), 'number' => $ip->getNumber(), 'id' => implode(':', array($ip->getUserId(), $ip->getIp())));
 }
All Usage Examples Of Newscoop\Entity\User\Ip::getIp