Learn PHP: Functions

preview_player
Показать описание

Official site

Twitter
Рекомендации по теме
Комментарии
Автор

Trojun while programming dll shock array functions result server

adolfkweismann
Автор

Hi Alex, terminology is one of the great things in development right? so.
Why in PHP it's called functions something that in other programming languages would be called methods?

timkerim
Автор

<?php
function add($num1 = 0, $num2 = 0) {
return $num1 + $num2;
}

echo add(8, 7);

redpilledpatriot
Автор

i am in need of help, i was in functions.php and accidentally removed something from the footer section of function and clicked update and now i have lost total access to my site is there something that can be done to reverse or back up the site back up again ? your help would be much appreciated

WordOnWheels
Автор

<?php
function add($num1, $num2) {
return $num1 + $num2;
}

echo add(5, 15);

redpilledpatriot