itmo-php-course/engine/file1.php
2025-01-02 10:06:19 +03:00

25 lines
285 B
PHP

<?php
// ini_set('error_reporting', 0);
function one()
{
require_once "lib/file2.php";
sendMessage();
}
function two()
{
include_once "lib/file2.php";
sendMessage();
}
function three()
{
include_once "lib/file2.php";
sendMessage();
}
one();
two();
three();