Skip to content

Commit faa2821

Browse files
author
Christoph Singer
committed
Updated README
1 parent 8d6c5f3 commit faa2821

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

README.md

100755100644
+37
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ PHP class for handling and manipulating URLs. It's a pragmatic one-class lib tha
1414
- supports protocol-relative urls
1515
- convert absolute, host-relative and protocol-relative urls to relative and vice versa
1616

17+
- New in version 0.7 (2018/07/25): optional compatibility with `Psr\Http\Message\UriInterface` (PSR-7), see below
18+
1719
Installation
1820
------------
1921

@@ -135,6 +137,41 @@ echo $url->write(Url::WRITE_FLAG_OMIT_SCHEME); // will print: //www.test.test/in
135137
echo $url->write(Url::WRITE_FLAG_OMIT_SCHEME | Url::WRITE_FLAG_OMIT_HOST)); // will print: /index.php?id=5#c1
136138
```
137139

140+
### Compatibility with `Psr\Http\Message\UriInterface` (PSR-7) ###
141+
142+
143+
- class `Url` now has all methods defined in this interface but does not officially implement it.
144+
- new wrapper class `Psr7Uri` that implements `UriInterface`
145+
- methods for converting between `Url` and `Psr7Uri`
146+
147+
Class `Url` does not implement the PSR Interface by itself for two reasons:
148+
1. To not introduce a new dependency on the PSR interface. The dependency is only "suggested" in composer json.
149+
2. Because the PSR interface is designed to be immutable,
150+
while `Url` is not.
151+
152+
To use this feature, you need to `composer require psr/http-message`
153+
154+
```php
155+
<?php
156+
use Wa72\Url\Psr7Uri;
157+
use Wa72\Url\Url;
158+
159+
# Get a Psr7Uri from a Url object
160+
161+
$url = Url::parse('https://www.foo.bar/test.php?a=b');
162+
$psr7uri = Psr7Uri::fromUrl($url);
163+
// or alternatively:
164+
$psr7uri = $url->toPsr7();
165+
166+
# Get a Url object from UriInterface
167+
168+
$url = Url::fromPsr7($psr7uri);
169+
// or alternatively:
170+
$url = $psr7uri->toUrl();
171+
172+
173+
```
174+
138175
### More documentation to come ###
139176

140177
Meanwhile, have a look at the source code, there are lots of comments in it.

0 commit comments

Comments
 (0)