Skip to content

Instantly share code, notes, and snippets.

@johncarter-
Last active November 6, 2020 10:18
Show Gist options
  • Select an option

  • Save johncarter-/4e09bfffe682cea8a965fc1cf45809f7 to your computer and use it in GitHub Desktop.

Select an option

Save johncarter-/4e09bfffe682cea8a965fc1cf45809f7 to your computer and use it in GitHub Desktop.
HTML Fraction Entities to string
<?php
$fractionStrings = [
'½' => 'half',
'' => 'third',
'' => 'two-thirds',
'¼' => 'quarter',
'¾' => 'three-quarters',
'' => 'fifth',
'' => 'two-fifths',
'' => 'three-fifths',
'' => 'four-fifths',
'' => 'sixth',
'' => 'five-sixths',
'' => 'seventh',
'' => 'eighth',
'' => 'three-eighths',
'' => 'five-eighths',
'' => 'seven-eighths',
'' => 'ninth',
'' => 'tenth',
];
// e.g. echo $fractionStrings['⅝']; // 'five-eighths'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment