vote up 0 vote down star
  • Why do developer's think PHP is an easy language ?

  • Why is it assumed that person with no CS background can learn PHP easily ?

flag
You might have better luck if you tell us about some of the difficulties you're having (if I've cracked your code correctly). – Michael Petrotta Oct 27 at 0:54
3  
Might be an idea to ask the person who assumed it, rather than assuming that all developers make this assumption... – Steve 'onebyone' Jessop Oct 27 at 0:55
Reopen .......... – Rachel Oct 27 at 1:06

closed as subjective and argumentative by Michael Petrotta, Tim Sylvester, Mark Rushakoff, cletus, Ether Oct 27 at 1:03

4 Answers

vote up 7 vote down check

1) Because it is

2) Because they can

Learning to use any language well is a different story of course. There are literally thousands of start learning PHP pages out on the web. It makes it super easy to jump in and do php, especially since so many hosting environments come with a PHP installation that just works.

link|flag
easier perhaps; easy is meant here as a relative term. It's certainly easier to get going, but its also pretty easy to write terrible code and it's easy to make a total mess :) – David Caunt Oct 27 at 1:14
vote up 0 vote down

Aside from the language itself, it's super easy to deploy PHP applications. PHP in comparison to Rails for example (in the days before mod_rails) is a walk in the park to get going.

link|flag
vote up 0 vote down

I think it is because it is less structured. Compare the Hello World example programs of PHP to other languages such as C#, Java, C, C++, Eiffel (although the Hello World examples of languages like Perl and Python and Ruby are probably as simple as PHP - PHP probably got as popular as it is by being in the right place at the right time). PHP lets you get away with not needing to declare things until you want them. Types are not really an issue, as a variable can appear to be whatever type you need it to be. These things, I think, make the language easy to get into (initially), but if you're sloppy, they also give you lots of rope to hang yourself.

link|flag
vote up 0 vote down
  1. Because it kind of is in the means of rules. No string type casting, and it was a fully function-based language before PHP 5/6. Before that OOP was.. ahem... not too well supported - and starting out with a set of function is easy for newcomers. This is a pre-built image of PHP which is hard to change.

  2. See number one. Anyone can start writing scripts in PHP since it is pretty straight-forward. Just look up functions at php.net and write them to the file. No complex OOP, no need for ORM or MVC understanding at all.

** these things are true even though those things do not mean that anyone can do good code there **

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.