Current File : //home/honehdyv/reversevillain.com/wp-content/plugins/redirection/models/ip.php
<?php

class Redirection_IP {
	private $ip;

	public function __construct( $ip = '' ) {
		$this->ip = '';

		$ip = sanitize_text_field( $ip );
		$ip = explode( ',', $ip );
		$ip = array_shift( $ip );
		$ip = filter_var( $ip, FILTER_VALIDATE_IP );

		// Convert to binary
		// phpcs:ignore
		$ip = @inet_pton( trim( $ip ) );
		if ( $ip !== false ) {
			// phpcs:ignore
			$this->ip = @inet_ntop( $ip );  // Convert back to string
		}
	}

	public function get() {
		return $this->ip;
	}
}
Comments on: Btooom! Chapter 80 https://w3.readbtooom.com/manga/btooom-chapter-80/ Read Btooom! Manga Online in High Quality Wed, 30 Nov 2022 23:56:24 +0000 hourly 1 https://wordpress.org/?v=6.4.5