Skip to content

Instantly share code, notes, and snippets.

@Pahom-ka
Created February 15, 2024 07:03
Show Gist options
  • Save Pahom-ka/e3d3a34ad57b055593b8192794ad7ee1 to your computer and use it in GitHub Desktop.
Save Pahom-ka/e3d3a34ad57b055593b8192794ad7ee1 to your computer and use it in GitHub Desktop.
Modx url phone converter
<?php
if (!empty($input)) { $input = preg_replace("/[^+0-9]/", '', $input); $input = preg_replace("/^(8)/", '7', $input); } return $input;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment