<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Base</title>
<p>
<a href="{% url 'learning_logs:index' %}">Learnig log</a> -
<a href="{% url 'learning_logs:topics' %}">Topics</a> -
{% if user.is_authenticated %}
Hello, {{ user.username }}.
<a href="{% url 'users:logout' %}">log out</a>
{% else %}
<a href="{% url 'users:register' %}">Registration</a> -
<a href="{% url 'users:login' %}">log in</a>
{% endif %}
</p>
{% block content %}{% endblock content %}
</head>
<body>
</body>
</html>
<?php
class Arr
{
private $numbers = []; // массив чисел
// Добавляем число в массив:
public function add($number)
{
$this->numbers[] = $number;
return $this; // вернем ссылку сами на себя
}
public function append(array $nums): self
{
array_push($this->numbers, ...$nums);
return $this;
}
// Находим сумму чисел:
public function getSum()
{
return array_sum($this->numbers);
}
}
$arr = new Arr;
$arr->append([2, 3, 4]); // добавляем в массив числа
print_r (new $arr);
?>
$fp = fopen($_FILES['uploadFile']['tmp_name'], 'r');
while ( ($line = fgets($fp)) !== false) {
echo "$line<br>";
list ($func, $date, $time, $race, $from, $to, $airplane, $price, $confirm) = split (' ', $line);
}