Skip to content

Instantly share code, notes, and snippets.

View joshespi's full-sized avatar

Josh Espinoza joshespi

View GitHub Profile
@joshespi
joshespi / abbreviate.php
Last active May 28, 2023 16:00
Swap abbreviated versions of words/names with PHP
function apply_abbreviations($string) {
$abbreviated_words = [
"Teaching and Learning" => "T&L",
"Teaching & Learning" => "T&L",
"Human Resources" => "HR",
"Admin" => "Administrator",
"Asst" => "Assistant",
"Elem" => "Elementary",
"Sec" => "Secondary",
];