mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-13 14:45:09 +00:00
6 lines
201 B
PHP
6 lines
201 B
PHP
<?php
|
|
$str = '[b]Это[/b] очень жирный [b]текст[/b].';
|
|
echo str_replace(['[b]', '[/b]'], ['', ''], $str, $number);
|
|
echo '<br />';
|
|
echo "Осуществлено замен: $number";
|