Pages, Articles & News
Tools & Plugins
Example / Placeholder Title


Description as an example placeholder. Sample text content for further customization of the "Index36" template.

You are free to edit and customize the template however you like. If you don’t have time or enough knowledge — you can always order template adaptation by contacting me via GitHub or private messages on the digital goods marketplace.

Функции в PHP. return

Функции в PHP. return

Функция может возвращать результат.

function sum($x, $y) {
    $result = $x + $y;
    return $result;
}

$result = multiply(5, 5);
echo $result; // 10

Объяснение:

  • return возвращает результат, который можно сохранить в переменную.

Еще один пример:

function greet($name) {
    return "Привет, $name! <br>";
}

$greeting = greet("Иван"); // Вернёт строку "Привет, Иван!"
echo $greeting; // Распечатает: Привет, Иван!
No comments yet
Only registered users can post new comments
Account