Does any one have an idea about this please share with me, I heard that PHP is not that much secure than compared to Java (or JSP). Is it true? Then what are the reasons? Thanks in advance :)
|
2
|
|||
|
closed as not a real question by philippe , hhafez, karim79, John Saunders, Shog9 Jul 2 at 2:08 |
|
|
There must be hundreds of differences between these two languages. But I'd say the key differences are:
On the matter of security, read this about PHP. Since Java was originally designed with security in mind, there is little point in defending PHPs position. It is less secure. That's not to say that it's not worth considering PHP for your project, I personally have deployed numerous PHP projects with no security melt-downs (yet!) |
||
|
|
|
|
Java is an object-oriented language. PHP is a general-purpose procedural scripting language, with OOP features thrown in as an afterthought. Application security is somewhat dependent on the choice of language, but is mostly in the hands of the developer. That is to say, it is exceedingly simple to create something insecure, not matter what language you are using. |
||||||||||||||
|
|
|
This is a very very open ended question. So check out these currently open and well answered PHP questions.
And these for Java And these about PHP and Java |
||
|
|
|
|
I'd say that the main difference between the two languages is that PHP is a very dynamically typed and interpreted language (Also known as scripting languages). Java is obsessively typed and is a compiled language. Another important difference between them is that PHP comes from an open source / Linux tradition, where the language is only one piece in the technology stack. Java on the other hand has a much larger ecosystem. I would specifically say that the object system is not setting the two languages much apart. There are plenty of differences here too, but in general PHP's object system is closely modelled after Java's. |
||||
|
