Files
php_8/strings/delete.php
2022-05-07 12:42:35 +03:00

6 lines
159 B
PHP

<?php
$str = '[b]Это[/b] очень жирный [b]текст[/b].';
$str = str_replace('[b]', '', $str);
$str = str_replace('[/b]', '', $str);
echo $str;