WC_Geo_IP::geoip_close()

Close geoip file.


Description Description


Return Return

(bool)


Top ↑

Source Source

File: includes/class-wc-geo-ip.php

	public function geoip_close() {
		if ( $this->flags & self::GEOIP_SHARED_MEMORY ) {
			return true;
		}

		return fclose( $this->filehandle );
	}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.