1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582
|
---
layout: default
title: URI components
redirect_from:
- /5.0/components/host/
---
The Host
=======
The library provides a `Host` class to ease host creation and manipulation. This URI component object exposes the [package common API](/components/1.0/api/), but also provide specific methods to work with the URI host component.
<p class="message-notice">If the modifications do not change the current object, it is returned as is, otherwise, a new modified object is returned.</p>
<p class="message-warning">When a modification fails an <code>League\Uri\Components\Exception</code> exception is thrown.</p>
## Creating a new object using the default constructor
~~~php
<?php
public Host::__construct(?string $content = null, Rules $resolver = null): void
~~~
<p class="message-info">since version <code>1.7.0</code> you can inject a <a href="/domain-parser/1.0/rules/#rules-and-domain">Rules</a> object on instantiation.</p>
<p class="message-notice">submitted string is normalized to be <code>RFC3986</code> compliant.</p>
<p class="message-warning">If the submitted value is not valid a <code>League\Uri\Components\Exception</code> exception is thrown.</p>
The `League\Uri\Components\Exception` extends PHP's SPL `InvalidArgumentException`.
## Host represented by an IP
~~~php
<?php
public static Host::createFromIp(string $ip, Rules $resolver = null): self
public Host::getIp(void): string
public Host::getIpVersion(void): string|null
public Host::isIp(void): bool
public Host::isIpv4(void): bool
public Host::isIpv6(void): bool
public Host::isIpFuture(void): bool
public Host::hasZoneIdentifier(void): bool
public Host::withoutZoneIdentifier(void): self
~~~
### Host::createFromIp
This method allow creating an Host object from an IP. If the submitted IP is invalid a `League\Uri\Components\Exception` exception is thrown.
<p class="message-info">since version <code>1.7.0</code> you can inject a <a href="/domain-parser/1.0/rules/#rules-and-domain">Rules</a> object on instantiation. The parameter is optional</p>
~~~php
<?php
use League\Uri\Components\Host;
$ipv4 = Host::createFromIp('127.0.0.1');
echo $ipv4; //display '127.0.0.1'
$ipv6 = Host::createFromIp('::1');
echo $ipv6; //display '[::1]'
Host::createFromIp('uri.thephpleague.com');
//throws League\Uri\Components\Exception
~~~
### IPv4 or IPv6
There are two (2) types of host:
- Hosts represented by an IP;
- Hosts represented by a registered name;
To determine what type of host you are dealing with the `Host` class provides the `isIp` method:
~~~php
<?php
use League\Uri\Components\Host;
$host = new Host('example.com');
$host->isIp(); //return false;
$ip_host = $host->withContent('127.0.0.1');
$ip_host->isIp(); //return true;
~~~
Knowing that you are dealing with an IP is good, knowing its version is better.
~~~php
<?php
use League\Uri\Components\Host;
$ipv6 = Host::createFromIp('::1');
$ipv6->isIp(); //return true
$ipv6->isIpv4(); //return false
$ipv6->isIpv6(); //return true
$ipv6->isIpFuture(); //return false
$ipv6->getIpVersion(); //return '6'
$ipv4 = new Host('127.0.0.1');
$ipv4->isIp(); //return true
$ipv4->isIpv4(); //return true
$ipv4->isIpv6(); //return false
$ipv4->isIpFuture(); //return false
$ipv4->getIpVersion(); //return '4'
$ipfuture = new Host('v32.1.2.3.4');
$ipfuture->isIp(); //return true
$ipfuture->isIpv4(); //return false
$ipfuture->isIpv6(); //return false
$ipfuture->isIpFuture(); //return true
$ipfuture->getIpVersion(); //return '32'
$domain = new Host('thephpleague.com'):
$domain->isIp(); //return false
$domain->isIpv4(); //return false
$domain->isIpv6(); //return false
$domain->isIpFuture(); //return false
$domain->getIpVersion(); //return null
~~~
### Zone Identifier
#### Detecting the presence of the Zone Identifier
The object can also detect if the IPv6 has a zone identifier or not. This can be handy if you want to know if you need to remove it or not for security reason.
~~~php
<?php
use League\Uri\Components\Host;
$ipv6 = new Host('[Fe80::4432:34d6:e6e6:b122%eth0-1]');
$ipv6->hasZoneIdentifier(); //return true
$ipv4 = new Host('127.0.0.1');
$ipv4->hasZoneIdentifier(); //return false
~~~
#### Removing the Zone Identifier
According to [RFC6874](http://tools.ietf.org/html/rfc6874#section-4):
> You **must** remove any ZoneID attached to an outgoing URI, as it has only local significance at the sending host.
To fullfill this requirement, the `Host::withoutZoneIdentifier` method is provided. The method takes not parameter and return a new host instance without its zone identifier. If the host has not zone identifier, the current instance is returned unchanged.
~~~php
<?php
use League\Uri\Components\Host;
$host = new Host('[fe80::1%25eth0-1]');
$newHost = $host->withoutZoneIdentifier();
echo $newHost; //displays '[fe80::1]';
~~~
### Getting the IP string representation
You can retrieve the IP string representation from the Host object using the `getIp` method. If the Host is not an IP `null` will be returned instead.
~~~php
<?php
use League\Uri\Components\Host;
$host = new Host('[fe80::1%25eth0-1]');
$host->getIp(); //returns 'fe80::1%eth0-1'
$newHost = $host->withContent('uri.thephpleague.com');
$newHost->getIp(); //returns null
$newHost->getIpVersion(); //returns null
~~~
## Host represented by a registered name
If you don't have a IP then you are dealing with a registered name. A registered name can be a [domain name](http://tools.ietf.org/html/rfc1034) subset if it follows [RFC1123](http://tools.ietf.org/html/rfc1123#section-2.1) but it is not a requirement as stated in [RFC3986](https://tools.ietf.org/html/rfc3986#section-3.2.2)
> (...) URI producers should use names that conform to the DNS syntax, even when use of DNS is not immediately apparent, and should limit these names to no more than 255 characters in length.
<p class="message-info"><code>Host::isDomain</code> is available since version <code>1.8.0</code>.</p>
~~~php
<?php
public Host::isDomain(void): bool
~~~
To determine if a host is a domain name or a general registered name you just need to use the newly added method `Host::isDomain`
~~~php
<?php
use League\Uri\Components\Host;
$domain = new Host('www.example.co.uk');
$domain->isDomain(); //return true
$reg_name = new Host('...test.com');
$reg_name->isDomain(); //return false
~~~
## Host represented by a domain name
<p class="message-warning"><code>Host::getRegisterableDomain</code> and <code>Host::withRegisterableDomain</code> are deprecated and replaced by <code>Host::getRegistrableDomain</code> and <code>Host::withRegistrableDomain</code> starting with version <code>1.5.0</code>.</p>
If you don't have an IP or a general registered name it means you are using a domain name. As such the following method can be used to further caracterize your host.
~~~php
<?php
const Host::IS_RELATIVE = 0;
const Host::IS_ABSOLUTE = 1;
public static Host::createFromLabels(iterable $data, int $type = self::IS_RELATIVE): self
public Host::isAbsolute(void): bool
public Host::getLabels(void): array
public Host::getLabel(int $offset, $default = null): mixed
public Host::keys([string $label]): array
public Host::count(void): int
public Host::getIterator(void): ArrayIterator
public Host::withRootLabel(void): self
public Host::withoutRootLabel(void): self
public Host::prepend(string $host): self
public Host::append(string $host): self
public Host::replaceLabel(int $offset, string $host): self
public Host::withoutLabels(array $offsets): self
public Host::getPublicSuffix(void): string
public Host::isPublicSuffixValid(void): bool
public Host::getRegistrableDomain(void): string
public Host::getSubDomain(void): string
public Host::withRegistrableDomain(string $host): self
public Host::withSubDomain(string $host): self
~~~
### Host public informations
Using data from [the public suffix list](http://publicsuffix.org/) every `Host` object can:
- return the subdomain using the `Host::getSubDomain` method;
- return the registrable domain using the `Host::getRegistrableDomain` method;
- return the public suffix using the `Host::getPublicSuffix` method;
- tell you if the found public suffix is valid using the `Host::isPublicSuffixValid` method;
~~~php
<?php
use League\Uri\Components\Host;
$host = new Host('www.example.co.uk');
echo $host->getPublicSuffix(); //display 'co.uk'
echo $host->getRegistrableDomain(); //display 'example.co.uk'
echo $host->getSubDomain(); //display 'www'
$host->isPublicSuffixValid(); //return a boolean 'true' in this example
~~~
If the data is not found the methods listed above will all return an **empty string** except for the `Host::isPublicSuffixValid` method which will return `false`.
~~~php
<?php
use League\Uri\Components\Host;
$host = new Host('192.158.26.30');
echo $host->getPublicSuffix(); //return ''
echo $host->getRegistrableDomain(); //return ''
echo $host->getSubDomain(); //return ''
$host->isPublicSuffixValid(); //return false
~~~
### Updating the Registrable domain part
You can update the registrable domain part of the host.
~~~php
<?php
use League\Uri\Components\Host;
$host = new Host('www.11.be');
$newHost = $host->withRegistrableDomain('co.uk');
echo $newHost; //displays 'www.11.co.uk'
~~~
<p class="message-warning">This method throws an <code>League\Uri\Components\Exception</code> if you submit a FQDN.</p>
### Update the Host subdomains
You can update the subdomain part of the host.
~~~php
<?php
use League\Uri\Components\Host;
$host = new Host('www.11.be');
$newHost = $host->withSubDomain('shop');
echo $newHost; //displays 'shop.11.be'
~~~
<p class="message-warning">This method throws an <code>League\Uri\Components\Exception</code> if you submit a FQDN.</p>
### Host::createFromLabels
A host is a collection of labels delimited by the host separator `.`. So it is possible to create a `Host` object using a collection of labels with the `Host::createFromLabels` method.
<p class="message-info">since version <code>1.7.0</code> you can inject a <a href="/domain-parser/1.0/rules/#rules-and-domain">Rules</a> object on instantiation. The parameter is optional</p>
The method expects at most 3 arguments:
- The first required argument must be a collection of label (an `array` or a `Traversable` object). **The labels must be ordered hierarchically, this mean that the array should have the top-level domain in its first entry**.
- The second optional argument, a `Host` constant, tells whether this is an <abbr title="Fully Qualified Domain Name">FQDN</abbr> or not:
- `Host::IS_ABSOLUTE` creates an a fully qualified domain name `Host` object;
- `Host::IS_RELATIVE` creates an a partially qualified domain name `Host` object;
By default this optional argument equals to `Host::IS_RELATIVE`.
- The third optional argument is a `League\Uri\PublicSuffix\Rules` object which will be used to resolved the host public suffix. If none is provided the Host will try to generate one using the defaut value from the [Hostname Parser component](/domain-parser/1.0/).
<p class="message-warning">Since an IP is not a hostname, the class will throw an <code>League\Uri\Components\Exception</code> if you try to create an fully qualified domain name with a valid IP address.</p>
~~~php
<?php
use League\Uri\Components\Host;
$host = Host::createFromLabels(['com', 'example', 'shop']);
echo $host; //display 'shop.example.com'
$fqdn = Host::createFromLabels(['com', 'example', 'shop'], Host::IS_ABSOLUTE);
echo $fqdn; //display 'shop.example.com.'
$ip_host = Host::createFromLabels(['0.1', '127.0']);
echo $ip_host; //display '127.0.0.1'
Host::createFromLabels(['0.1', '127.0'], Host::IS_ABSOLUTE);
//throws League\Uri\Components\Exception
~~~
### Partial or fully qualified registered name
A host is considered absolute or as being a fully qualified domain name (FQDN) if it contains a <strong>root label</strong>, its string representation ends with a `.`, otherwise it is known as being a relative or a partially qualified domain name (PQDN).
~~~php
<?php
use League\Uri\Components\Host;
$host = new Host('example.com');
$host->isIp(); //return false
$host->isAbsolute(); //return false
$fqdn = new Host('example.com.');
$fqdn->isIp(); //return false
$fqdn->isAbsolute(); //return true
$ip = new Host('[::1]');
$ip->isIp(); //return true
$ip->isAbsolute(); //return false
~~~
<p class="message-warning"><strong>IP type host can not be FQDN</strong></p>
#### Updating the host status
To update the host state from FDQN to a PQDN and vice-versa you can use 2 methods
- `withRootLabel`
- `withoutRootLabel`
These methods which takes not argument add or remove the root empty label from the host as see below:
~~~php
<?php
use League\Uri\Components\Host;
$host = new Host('www.11.be');
echo $host->withRootLabel() //display 'www.11.be.'
echo $host->withoutRootLabel() //display 'www.11.be'
~~~
<p class="message-warning">Trying to update the root label of an IP type host will trigger a <code>League\Uri\Components\Exception</code></p>
### Normalization
Whenever you create a new host your submitted data is normalized using non desctructive operations:
- the host is lowercased;
- the host is converted to its ascii representation;
~~~php
<?php
use League\Uri\Components\Host;
$host = Host::createFromLabels(['com', 'ExAmPle', 'shop']);
echo $host; //display 'shop.example.com'
$host = Host::createFromLabels(['be', 'bébé']);
echo $host; //display 'xn--bb-bjab.be'
~~~
### Accessing the Host labels
#### Host iterable representation
A host can be splitted into its different labels. The class provides an array representation of a the host labels using the `Host::getLabels` method.
<p class="message-info">If the host is an IP, the array contains only one entry, the full IP.</p>
<p class="message-notice">The class uses a hierarchical representation of the Hostname. This mean that the host top-level domain is the array first item.</p>
~~~php
<?php
use League\Uri\Components\Host;
$host = new Host('secure.example.com');
$arr = $host->getLabels(); //return ['com', 'example', 'secure'];
$fqdn = new Host('secure.example.com.');
$arr = $fqdn->getLabels(); //return ['com', 'example', 'secure'];
$host = new Host('[::1]');
$arr = $host->getLabels(); //return ['::1'];
~~~
<p class="message-warning">Once in array representation you can not distinguish a FQDN from a PQDN</p>
The class also implements PHP's `Countable` and `IteratorAggregate` interfaces. This means that you can count the number of labels and use the `foreach` construct to iterate over them.
~~~php
<?php
use League\Uri\Components\Host;
$host = new Host('secure.example.com');
count($host); //return 3
foreach ($host as $offset => $label) {
echo $labels; //will display "com", then "example" and last "secure"
}
~~~
<p class="message-info">The returned label is encoded following <code>RFC3987</code>.</p>
#### Accessing Host label offset
If you are interested in getting the label offsets you can do so using the `Host::keys` method.
~~~php
<?php
use League\Uri\Components\Host;
$host = new Host('uk.example.co.uk');
$host->keys(); //return [0, 1, 2, 3];
$host->keys('uk'); //return [0, 3];
$host->keys('gweta'); //return [];
~~~
The method returns all the label keys, but if you supply an argument, only the keys whose label value equals the argument are returned.
<p class="message-info">The supplied argument is <code>RFC3987</code> encoded to enable matching the corresponding keys.</p>
#### Accessing Host label value
If you are only interested in a given label you can access it directly using the `Host::getLabel` method as show below:
~~~php
<?php
use League\Uri\Components\Host;
$host = new Host('example.co.uk');
$host->getLabel(0); //return 'uk'
$host->getLabel(23); //return null
$host->getLabel(23, 'now'); //return 'now'
~~~
<p class="message-notice"><code>Host::getLabel</code> always returns the <code>RFC3987</code> label representation.</p>
If the offset does not exists it will return the value specified by the optional second argument or default to `null`.
<p class="message-info"><code>Host::getLabel</code> supports negative offsets</p>
~~~php
<?php
use League\Uri\Components\Host;
$host = new Host('example.co.uk');
$host->getLabel(-1); //return 'uk'
$host->getLabel(-23); //return null
$host->getLabel(-23, 'now'); //return 'now'
~~~
### Manipulating the host labels
#### Appending labels
To append labels to the current host you need to use the `Host::append` method. This method accepts a single argument which represents the data to be appended. This data can be a string or `null`.
~~~php
<?php
use League\Uri\Components\Host;
$host = new Host();
$newHost = $host->append('toto')->append('example.com');
echo $newHost; //return toto.example.com
~~~
#### Prepending labels
To prepend labels to the current host you need to use the `Host::prepend` method. This method accept a single argument which represents the data to be prepended. This data can be a string or `null`.
~~~php
<?php
use League\Uri\Components\Host;
$host = new Host();
$newHost = $host->prepend('example.com')->prepend('toto');
echo $newHost; //return toto.example.com
~~~
#### Replacing labels
To replace a label you must use the `Host::replaceLabel` method with two arguments:
- The label's key to replace if it exists **MUST BE** an integer.
- The data to replace the key with. This data must be a string or `null`.
~~~php
<?php
use League\Uri\Components\Host;
$host = new Host('foo.example.com');
$newHost = $host->replaceLabel(2, 'bar.baz');
echo $newHost; //return bar.baz.example.com
~~~
<p class="message-info">Just like the <code>Host::getLabel</code> this method supports negative offset.</p>
<p class="message-warning">if the specified offset does not exist, no modification is performed and the current object is returned.</p>
#### Removing labels
To remove labels from the current object you can use the `Host::withoutLabels` method. This method expects a single argument and will returns a new `Host` object without the selected labels. The argument is an array containing a list of offsets to remove.
~~~php
<?php
use League\Uri\Components\Host;
$host = new Host('toto.example.com');
$newHost = $host->withoutLabels([1]);
$newHost->__toString(); //return toto.com
~~~
<p class="message-info">Just like the <code>Host::getLabel</code> this method supports negative offset.</p>
<p class="message-warning">if the specified offsets do not exist, no modification is performed and the current object is returned.</p>
#### Modifying the Resolver object
At any given time you may change the `League\Uri\PublicSuffix\Rules` used to resolve the host public suffix using the following method
~~~php
<?php
public function withResolver(Rules $resolver): self
~~~
The method retains the state of the current instance, and returns an instance that contains a different domain resolver, and automatically updates the host domain information.
|