Skip to content

Instantly share code, notes, and snippets.

View LB-Digital's full-sized avatar

Lucas Bowers LB-Digital

View GitHub Profile
@LB-Digital
LB-Digital / parseMcTxt.php
Created August 23, 2017 16:38
PHP Function for converting MC colour codes to HTML
function parseMcTxt($inputTxt){
$inputTxt = str_replace('||', '<br>', $inputTxt);
$split = explode("&", $inputTxt);
$output = "";
foreach ($split as $key => $value) {
$color = substr($value, 0, 1);
$str = substr($value, 1);
$span = "<span style='color: ";