<?php $text = 'Call 123-456-7800 between 16:00 and 4:00 for confidential support'; $f = new NumberFormatter('en', NumberFormatter::SPELLOUT); echo preg_replace_callback( '/\b(\d)(\d)(\d)-(\d)(\d)(\d)-(\d)(\d)(\d)(\d)\b/', fn($m) => implode(' ', array_map([$f, 'format'], array_slice($m, 1))), $text );
You have javascript disabled. You will not be able to edit any code.