andreas-glaser/php-helpers

A simple php library of various helper functions and classes.

1.2.0 2021-04-02 08:19 UTC

README

A simple php library of various helper functions and classes.

Installation

composer require andreas-glaser/php-helpers @stable

Usage

<?php

namespace TestApp;

use AndreasGlaser\Helpers\StringHelper;

$myString = 'This is great';
var_dump(StringHelper::startsWith($myString, 'This is')); // true