mrferos / purl
There is no license information available for the latest version (dev-master) of this package.
A PHP port of the furl library by gruns
dev-master
2013-11-04 13:04 UTC
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2024-11-06 09:47:22 UTC
README
A shameless port of the furl python library to PHP to make URL manipulation easy.
The Query
Manipulating the url query is easy:
$url = \Purl\Purl::fromString('http://www.google.com/?one=1&two=2'); unset($url['one']); $url['three'] = 'foo'; echo $url->toString(); // http://www.google.com/?two=2&three=foo
Alternatively you can do the same like so:
$url = \Purl\Purl::fromString('http://www.google.com/?one=1&two=2'); $url->getQuery()->add('three','foo') ->remove('one'); echo $url; // http://www.google.com/?two=2&three=foo
Still one more way since the query has easy accessor methods in the Purl object:
$url = \Purl\Purl::fromString('http://www.google.com/?one=1&two=2'); $url->add('three', 'foo') ->remove('one'); echo $url; // http://www.google.com/?two=2&three=foo
The Path
You can add or remove from the path like so:
$url = \Purl\Purl::fromString('http://www.google.com/path/?foo=2'); $url->getPath()->add('second-part'); // 'http://www.google.com/path/second-part/?foo=2' $url->getPath()->remove('path'); // http://www.google.com/second-part/?foo=2
The Fragment
Fragments can be edited like so:
$url = \Purl\Purl::fromString('http://www.google.com/path/?foo=2#fragment/foo?arg=one'); $url->getFragment()->getQuery()->remove('arg'); // http://www.google.com/path/?foo=2#fragment/foo $url->getFragment()->getPath()->remove('foo'); // http://www.google.com/path/?foo=2#fragment