bulldog / utils
PHP Helpers
v3.1.0
2020-01-29 15:16 UTC
This package is auto-updated.
Last update: 2024-10-29 04:25:45 UTC
README
Just some handy functions that we find useful packaged in a very lightweight package.
Functions
Dump and Die
dd
a simple implementation of die dump.
<?php Bulldog\dd($variable);
Dump
dump
var_dump, with pre
tags if it is called from the browser.
<?php Bulldog\dump($variable);
WriteLine
WriteLine
writes a string to the console then the newline character.
<?php Bulldog\WriteLine("Hello, World!");
PrintCode
PrintCode
echos out an optional heading tag, then code wrapped in pre
and code
tags.
<?php Bulldog\PrintCode("Console.WriteLine", "C#");
Slugify
Slugify
creates a hyphenated version of a string that can be used for friendly URLs.
<?php Bulldog\Slugify("Article on the evolution of candy bars.");
ShortHash
ShortHash
creates a short hash using the first 10 characters of a SHA512 hash.
It accepts an optional parameter for the length of the hash.
<?php Bulldog\ShortHash(time(), 5);