codezero/utilities

This package is abandoned and no longer maintained. No replacement package was suggested.

All-round utilities library

1.1.0 2015-02-03 00:25 UTC

This package is auto-updated.

Last update: 2020-02-11 01:37:22 UTC


README

Build Status Latest Stable Version Total Downloads License

This package includes some all-round methods that might be useful in many projects.

Installation

Download this package or install it through Composer:

"require": {
	"codezero/utilities": "1.*"
}

URL Helper

Join slugs into a well formatted URL

$urlParts = [
    'http://www.mysite.com/',
    '/subdir',
    'someOtherDir/',
    '/somepage.php'
];

use CodeZero\Utilities\UrlHelper;

$urlHelper = new UrlHelper();

$url = $urlHelper->joinSlugs($urlParts);

Returns: http://www.mysite.com/subdir/someOtherDir/somepage.php

This will make sure there is only one slash between each slug.

That's all for now...

Analytics