PHP 8.2.31
Preview: Node.php Size: 566 B
/home/nshryvcy/blissfulnepal.com/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Node.php

<?php

namespace Wordfence\MmdbReader;

class Node {

	const SIDE_LEFT = 0;
	const SIDE_RIGHT = 1;

	private $reader;
	private $data;
	private $left, $right;

	public function __construct($reader, $data) {
		$this->reader = $reader;
		$this->data = $data;
	}

	public function getRecord($side) {
		$value = $this->reader->extractRecord($this->data, $side);
		return new NodeRecord($this->reader, $value);
	}

	public function getLeft() {
		return $this->getRecord(self::SIDE_LEFT);
	}

	public function getRight() {
		return $this->getRecord(self::SIDE_RIGHT);
	}

}

Directory Contents

Dirs: 2 × Files: 11

Name Size Perms Modified Actions
Exception DIR
- drwxr-xr-x 2026-06-03 14:57:34
Edit Download
Io DIR
- drwxr-xr-x 2026-06-03 14:57:34
Edit Download
2.50 KB lrw-r--r-- 2026-06-03 14:57:34
Edit Download
6.02 KB lrw-r--r-- 2026-06-03 14:57:34
Edit Download
1.87 KB lrw-r--r-- 2026-06-03 14:57:34
Edit Download
4.99 KB lrw-r--r-- 2026-06-03 14:57:34
Edit Download
699 B lrw-r--r-- 2026-06-03 14:57:34
Edit Download
265 B lrw-r--r-- 2026-06-03 14:57:34
Edit Download
2.56 KB lrw-r--r-- 2026-06-03 14:57:34
Edit Download
497 B lrw-r--r-- 2026-06-03 14:57:34
Edit Download
566 B lrw-r--r-- 2026-06-03 14:57:34
Edit Download
2.04 KB lrw-r--r-- 2026-06-03 14:57:34
Edit Download
1.22 KB lrw-r--r-- 2026-06-03 14:57:34
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).