mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-10 03:01:01 +00:00
15 lines
272 B
PHP
15 lines
272 B
PHP
<?php
|
|
$text = 'Адреса: user-first@mail.ru, second.user@mail.ru.';
|
|
|
|
$html = preg_replace(
|
|
'{
|
|
[-\w.]+ # имя ящика
|
|
@
|
|
[-\w]+(\.[-\w]+)* # имя хоста
|
|
}xs',
|
|
'<a href="mailto:$0">$0</a>',
|
|
$text
|
|
);
|
|
|
|
echo $html;
|