I'm trying to convert a dynamic string value of numbers which might be changed in the future that's why I don't want to hard code it.
<?php $telephone = (03) 1234 5678; // this number displays on the frontend only ?>
<a href="tel:+61-3-1234-5678"><?php echo $telephone; ?></a>
So I want to change/format the value from "(03) 1234 5678" to "tel:+61-3-1234-5678". How can I properly achieve this?