mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-13 14:45:09 +00:00
6 lines
243 B
PHP
6 lines
243 B
PHP
<?php
|
|
$str = 'Hello, this <b>word</b> is <b>bold</b>!';
|
|
$re = '|<(\w+) [^>]* > (.*) </\1>|xs';
|
|
preg_match($re, $str, $matches) or exit('Нет тегов.');
|
|
echo htmlspecialchars("'$matches[2]' обрамлено тегом '$matches[1]'");
|
|
|