$array = explode("\n", file_get_contents(JPATH_SITE.'/list.txt'));
// Удаляем пустые строки и обрезаем пробелы
$array = array_map('trim', array_filter($array));
// Проверяем значение, введенное в форму
$inputValue = $_POST['form']['mane'];
// Если значение не принадлежит списку, добавляем ошибку в массив
if (!in_array($inputValue, $array)) {
// Некорректный ввод
}
if (preg_match("/(https?:|\.[\s]?(ru|com|net|live|org|su)\b)/i", $str)) {
echo "Найдена ссылка!";
}
$font = $dompdf->getFontMetrics()->get_font("arial", "normal");
$color = array(0.565, 0.565, 0.565);
$dompdf->getCanvas()->page_text(32, 768, "text1", $font, 10, $color);
$dompdf->getCanvas()->page_text(32, 785, "text2", $font, 10, $color);
$dompdf->getCanvas()->page_text(32, 802, "text3", $font, 10, $color);
body {
padding-bottom:35px;
}