@@ -14,6 +14,8 @@ PHP class for handling and manipulating URLs. It's a pragmatic one-class lib tha
14
14
- supports protocol-relative urls
15
15
- convert absolute, host-relative and protocol-relative urls to relative and vice versa
16
16
17
+ - New in version 0.7 (2018/07/25): optional compatibility with ` Psr\Http\Message\UriInterface ` (PSR-7), see below
18
+
17
19
Installation
18
20
------------
19
21
@@ -135,6 +137,41 @@ echo $url->write(Url::WRITE_FLAG_OMIT_SCHEME); // will print: //www.test.test/in
135
137
echo $url->write(Url::WRITE_FLAG_OMIT_SCHEME | Url::WRITE_FLAG_OMIT_HOST)); // will print: /index.php?id=5#c1
136
138
```
137
139
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
+
138
175
### More documentation to come ###
139
176
140
177
Meanwhile, have a look at the source code, there are lots of comments in it.
0 commit comments