mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-03 16:43:03 +00:00
10 lines
109 B
PHP
10 lines
109 B
PHP
<?php
|
|
echo getSum(); // 15
|
|
{
|
|
function getSum()
|
|
{
|
|
$sum = 10 + 5;
|
|
return $sum;
|
|
}
|
|
}
|