PHP in 60 Seconds: The Basics #php #project #technology

preview_player
Показать описание
The basics of coding in PHP in 60 seconds.

Please consider supporting my channel:

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

For all you new people out there reading comments, PHP is super valuable to learn right now. There are a plethora of jobs needing PHP developers to maintain old systems. Much easier to get a job in php, than to try and get a job in a newer language/framework.

DevGio
Автор

I've been a PHP programmer for 22 year. (Yes, since 2001, version 4-something). The language has changed a lot in that time. At the beginning it was very similar to Perl and C, now it's more like Java. Lately however, in my company, some projects are being rebooted in C# and new stuff tends not to be done with PHP at all. I feel like PHP is declining in popularity, which makes me a little sad because I really like the language and I have no interest in C# and all the Microsoft associations that come with it.

dschledermann
Автор

0:28 You can put a trailing comma after the last item in the list. That can ease program maintenance in some situations.

lawrencedoliveiro
Автор

I wish I could afford to buy your udemy course. you are amazing teacher

dzvsow
Автор

PHP is a multi purpose language. And here we see just one scenario. Good tips.

jockrbr
Автор

Actually the video is very useful for those who just know programming language quite well and want to learn php.

antonioianniello
Автор

If you kmow a bit of SQL, its not that's hard to grasp at each glance

jeremiahsmarketing
Автор

Beware: you cannot access variables you declared in your file from inside a function UNLESS you re-declare them in the function with a global prefix.

Example:
```php
$var = "foo";
function boo(){
echo $var;
}
```
Will not echo the string foo because of scope. It will be null basically as the function cannot see the one declared outside.

Unless you add a global $var in the function like this:

```php
$var = "foo";
function boo(){
global $var;
echo $var;
}
```
Will echo "foo" as intended.

You can also pass by value like bo($var) but that is obvious

fuzzy-
Автор

Question, folks. I've been writing desktop applications in C# for 10 years. I want to move towards web development. There is scalability and microservices... really eager for it. Employers see that I have no practical knowledge in this area and turn me down. But I can potentially get a position in PHP. Should I go for PHP? Thank you very much, your answer is highly important 🙏

hello_world_zz
Автор

Love it. Php learning is in my future learning plan❤

Mind_exersice
Автор

If our professor explain it simply back then we would get it lol.

EyBossPusi
Автор

Hypothetically you could teach rocket-science under 2 hours

greatvedas
Автор

People have been telling me for years that php is trash. Now I have to learn after seeing this

stickking
Автор

Whole lot of people in here who aren’t devs acting like they’re devs.

fmachine
Автор

I am gonna add PHP to my CV after that video

dmitriylaptiev
Автор

$data["first"]
Shoukd be $data['first']
So php doesnt check for a variable

whatthefunction
Автор

My vote is for JavaScript syntax, arrays, objects to be enabled in PHP.

Steve-Richter
Автор

What is the font style you are using in your vscode i like it

Mark_Justine
Автор

your college lesson for one month in one minute

notpowder
Автор

I hate this language but this video is useful

berkaybakacak