Skip to content

andreas-glaser/php-helpers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

php-helpers

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