WpOrg\Requests

Iri::is_valid()publicWP 1.0

Check if the object represents a valid IRI. This needs to be done on each call as some things change depending on another part of the IRI.

Метод класса: Iri{}

Хуков нет.

Возвращает

true|false.

Использование

$Iri = new Iri();
$Iri->is_valid();

Код Iri::is_valid() WP 6.6.1

public function is_valid() {
	$isauthority = $this->iuserinfo !== null || $this->ihost !== null || $this->port !== null;
	if ($this->ipath !== '' &&
		(
			$isauthority && $this->ipath[0] !== '/' ||
			(
				$this->scheme === null &&
				!$isauthority &&
				strpos($this->ipath, ':') !== false &&
				(strpos($this->ipath, '/') === false ? true : strpos($this->ipath, ':') < strpos($this->ipath, '/'))
			)
		)
	) {
		return false;
	}

	return true;
}