F
F
filisonov2017-04-09 00:51:46
DLE
filisonov, 2017-04-09 00:51:46

How to pull data from DLE database?

Good day.
Please tell me there is such php code

<?php
if (!defined('DATALIFEENGINE')) die("Error!");
$content = "<b>тут нужно вставить текст статьи</b>";
$words_per_minute = "250"; // Время чтения слов в минуту
$img_per_minute = "12"; // Время чтения изображения в секундах
$img_numb = preg_match_all('~<img~i', $content, $result_numb); // Плучаем общее количество изображений в тексте
$text_read = round(count(preg_split('/\s/', $content)) / $words_per_minute, 1); // Получаем общее время чтения текста
$img_read = floor((count($result_numb[0]) * $img_per_minute) / 60); // Получаем общее время чтения изображений
$all_read = $img_read + $text_read; // Получаем общее время чтения (текст + изображения)
function decl_of_numb($all_numb, $titles) {
$cases = array(2, 0, 1, 1, 1, 2);
return $all_numb." ".$titles[ ($all_numb%100>4 && $all_numb%100<20)? 2 : $cases[min($all_numb%10, 5)] ];
}

echo '<b>Время чтения статьи:</b> '.decl_of_numb(round($all_read), array(' минута', ' минуты', ' минут'));

?>

Where it is indicated " here you need to insert the text of the article " you need to display the text of the news from the database. I ask for help in php I do not understand.

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question