base10/util

URI helper to simplify building URIs

1.5.0 2019-04-24 20:52 UTC

This package is auto-updated.

Last update: 2024-03-25 09:40:56 UTC


README

 $url = Url::init()->push('a', 'b')
 echo $url; // a/b

or short

 $url = Url::init('a', 'b')
 echo $url; // a/b