PHP Basics: Functions: func_get_args (26/35)

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

Official site

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

man, coding makes me feel so dumb. it took me about 30 minutes to just grasp the concept lol.
but i suppose it would've taken even more time if it was not for your video. thanks man.

CyberHermit
Автор

I know why I subscribed, I know why I like this videos.
This is exactly what I was looking for. Somebody to explain how this function woks.

ain.
Автор

Thank you for the tutorial. Are you using Sublime as an editor in this one, if so, does the colour there have a name? I really like ut but want to try something else than Darcula... :)

scrnall
Автор

What do you think about this :
function add(float ...$numbers) {
$total = 0;
foreach ($numbers AS $number)
$total += $number;
return $total;
}

ericponchant
Автор

thanks for teach us with simple example and explanation, keep up!

TheRabbitshare
Автор

Alex, what's the name of your color scheme? I'm not talking about the Sublime theme. I know that's the Material Theme.
I installed it too but I have a slighlty different color scheme. For example php variables don't become entirely blue but instead they're white with the blue dollar sign in front of them. Also, functions' parametres don't become italic like in your videos.
I'd appreciate if anyone could answer my question :)

brainplot
Автор

what about subtraction and the other signs?

jinno
Автор

9:16 How about passing a string or sth non numeric

MustafaBirsoz
Автор

Kindly also teach about call_user_func and callable.

phptuts
visit shbcf.ru