Skip to content

Instantly share code, notes, and snippets.

View kirkaracha's full-sized avatar

Kirk Franklin kirkaracha

View GitHub Profile
@kirkaracha
kirkaracha / TitleCase.php
Created April 23, 2018 20:34
Converts string to title case
<?php declare(strict_types=1);
if (!function_exists('titleCase')) {
function titleCase($title)
{
$smallWords = [
'a',
'an',
'and',
@kirkaracha
kirkaracha / titleCase.js
Last active April 23, 2018 20:33
Converts a string to title case
function titleCase (title) {
const smallWords = [
'a',
'an',
'and',
'at',
'but',
'by',
'else',
'for',
@kirkaracha
kirkaracha / Laravel log array or object
Created April 20, 2018 23:07
Logs the contents of an array or object
\Log::info(print_r($array, true));