+ 4
From where I learn advance php
I learn from solo learn now I want to be expert
5 Respostas
+ 10
Only from books and official documentation: php.net, phptherightway.com
+ 12
You can learn here:-)
https://www.udemy.com/learn-advanced-php-programming/
For reference:-)
http://www.php-rocks.com/advanced.php
+ 4
read official php documentation which is a good source of all concepts.
+ 3
I saw an advertisement with a bearded php programmer and realized that I know php
+ 1
function func($arg) {
$result = 0;
for($i=0; $i<$arg; $i++) {
$result = $result + $i;
}
return $result;
}
echo func(5);
how this become 10