<#+[a-z]+#+\d*#\d*#\d*#\d*##>
проверял на сервисе https://regex101.com/Эта книга начинает новую серию книг — «Флот космической службы» — людях, кораблях, службе ТОГУ и СКИ ОМЭР АН СССР.
Следующие книги в этой серии
«Район закрытый для плавания. История секретных экспедиций.» Авторы — Курочкин А.М., Шардин В.Е
«Предельная дальность». Юрий Иванович Максюта. Автор — Курочкин А.М.
«БЕЛЫЕ СЕЛЕНЫ» Автор -Самойлов Б.А.
<#pic#4015#0#0#0##>
<#+[a-z]+#+(\d*)#\d*#\d*#\d*##>
echo $text;
echo imgReplace($text);
function imgReplace($text)
{
return preg_replace_callback(PATTERN, function ($id) {
$sql = 'select smallURL from Images where id = ' . (int) $id;
// mysql query and fetch
return '<img scr="' . $img . '">';
}, $text);
}
$text = preg_match('#<div class="seach">(.*)</div>#', file_get_contents($url));
echo $text;
<div class="seach">
<p>Эта книга начинает новую серию книг — «Флот космической службы» — людях, кораблях, службе ТОГУ и СКИ ОМЭР АН СССР.
Следующие книги в этой серии
«Район закрытый для плавания. История секретных экспедиций.» Авторы — Курочкин А.М., Шардин В.Е
«Предельная дальность». Юрий Иванович Максюта. Автор — Курочкин А.М.
«БЕЛЫЕ СЕЛЕНЫ» Автор -Самойлов Б.А. <#pic#4015#0#0#0##></p>
</div>
$text = preg_match('#<div class="class">(.*)</div>'#isU, file_get_contents($url), $matches);
echo $text;
Notice: Undefined variable: url in /home/b43211/public_html/shatura.fun/1/index.php on line 8
Warning: file_get_contents(): Filename cannot be empty in /home/b43211/public_html/shatura.fun/1/index.php on line 8
$url = file_get_contents('https://сайт/1/index.php');
$text = preg_match('#<div class="class">(.*)</div>#isU', $url, $matches);
echo "<p>".$text."</p>";
echo "<p>".$matches[1]."</p>";
Warning: file_get_contents(): https:// wrapper is disabled in the server configuration by allow_url_fopen=0 in /home/b43211/public_html/сайт/1/index.php on line 8
Warning: file_get_contents(https://сайт/1/index.php): failed to open stream: no suitable wrapper could be found in /home/b43211/public_html/сайт/1/index.php on line 8
0
Notice: Undefined offset: 1 in /home/b43211/public_html/сайт/1/index.php on line 11
add_filter('the_content', 'bbco');
function bbco($content) {
if (strstr($content,'[url]') === false) return "$content";
$content=preg_replace('/<#+[a-z]+#+(\d*)#\d*#\d*#\d*##>/is', 'тестик', $content);
return $content;
}
<p>Ненароков Валерий Николаевич. Родился 12.11.1946 в Бердянске. Член экспедиции трех рейсов на НИС "Невель". Умер и похоронен в Бердянске 24.01.2001. Фото присла его зять Сергей Гуров</p><p><#pic#2548#0#0#0##></p><p><#pic#2549#0#0#0##></p><p><#pic#2550#0#0#0##></p><p><#pic#2551#0#0#0##></p><p><#pic#2552#0#0#0##></p><p><#pic#2553#0#0#0##></p><p><#pic#2554#0#0#0##></p><p><#pic#2555#0#0#0##></p><p><#pic#2556#0#0#0##></p><p><#pic#2557#0#0#0##> </p><p><#pic#2558#0#0#0##></p><p><#pic#2559#0#0#0##></p><p><#pic#2560#0#0#0##></p><p><#pic#2561#0#0#0##></p><p><#pic#2562#0#0#0##></p><p><#pic#2563#0#0#0##></p><p><#pic#2565#0#0#0##> <br></p>
INSERT INTO `Images` (`__id`, `Name`, `smallURL`, `Description`, `bigURL`, `Keywords`) VALUES
(5, '1', 'images/data/gallery/5_small_1216133097.gif', '', 'images/data/gallery/5_big_1216133097.gif', ''),
(6, '2', 'images/data/gallery/6_small_1216133112.gif', '', 'images/data/gallery/6_big_1216133112.gif', '');
/* Выборка тегов для замены, начиная с картинки */
function replace_text($text) {
$line_img = 'тут код запроса или функция?';
mysqli_close($link);
// Замена картинок (ббкод на картинку из БД)
$text = preg_replace('<#+[a-z]+#+(\d*)#\d*#\d*#\d*##>', $line_img, $text);
// Замена ссылок на человекопонятные (ббкод на обычные ссылки-урл)
$text = preg_replace('/<#link#(.*)#URL:(.*)#>/', ' <a href="$2">$1</a>', $text);
// Замена лишнего кода на NULL
$text = preg_replace('/<#pcat#(.*)#>/', '', $text);
return $text;
}
add_filter('the_content', 'replace_text');