Used By
Used By | Description |
---|---|
wp-includes/Requests/IRI.php: Requests_IRI::get_iri() | Get the complete IRI |
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.
(bool)
File: wp-includes/Requests/IRI.php
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; }
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/requests_iri/is_valid