


1. Origin
Java was originally designed to develop a distributed code system for home consumer electronics; PHP is for the Internet. Born of application.
2. Comparison of the technical architecture of the system
PHP: Layering is a way to effectively organize the system. The idea of divide and conquer is a very important idea in the computer field. Under the guidance of good layering ideas, "high cohesion and low coupling" can be achieved, and specific problems can be separated, making it easier to control, extend, and allocate resources.
Developed using PHP language, it can perfectly realize the layered thinking of multi-layer architecture distribution. Under the guidance of the layered thinking, it can achieve "high cohesion and low coupling", and can also separate specific problems and make them easy to control. , easy to extend and easier to allocate resources.
JAVA: Gutmans published an article the year before last, which also elaborated on the comparison of multi-threading (JVM) and multi-process (LAMP) in a multi-core environment. Among them, it is mentioned that multi-core systems are very suitable for the multi-process approach of the LAMP architecture.
As the chip industry now focuses on multi-core rather than hyper-threading technology, the advantages of a multi-threaded environment like the JVM will not be fully utilized on today's hardware. The multi-process approach will provide more stability and reliability.
3. Database access comparison
PHP can be compiled into functions that connect to many databases. You will write your own peripheral functions to access the database indirectly. In this way, when the database used is changed, the coding can be easily modified to adapt to such changes. At the same time, the current PHP provides a unified interface for databases. Access to different databases such as Oracle, MySQL, SQL2000, etc. can be completed through the bridge without considering the database interface issues.
Java accesses the database through JDBC and accesses the database through database drivers provided by different database vendors without any special targeted optimization. If the developed web application is also converted from MYSQL data to ORACLE data, PHP uses the PDO interface, and almost no program modifications are needed, while Java development requires certain changes to achieve it.
The difference in database access methods has established the gap between e-commerce software developed by PHP and e-commerce software developed by Java. Java is the traditional generation, but PHP is the result of the development of new technology. , PHP can not only accommodate everything, but also steadily improve in speed, and its efficiency is much more powerful than Java. This round, Java is slightly less impressive.
4. Security comparison
Open source is the biggest advantage of security, and LIUNX is a very successful proof. The PHP development program can be easily modified after others get the code. Programs developed in Java cannot see the complete source code and can only see some compiled class files. Therefore, many hidden dangers of the underlying architecture cannot be predicted in advance. Once a catastrophic error occurs, the consequences will be severe. serious.
If you want to encrypt PHP code, you can also use Zend's authoritative product zend guard for encryption to ensure the intellectual property rights of the product. If we have to compare PHP and Java in terms of security, we can only say that they are about the same. If there is a gap, it is also determined by the level of the development programmers. In this round, the two are still evenly matched.
5. Foresight and expandability in the direction of Internet applications
On the whole, PHP is suitable for Internet applications, while the Java language was not designed at the beginning. It is not centered on WEB, but on general services. PHP can make the most of Internet applications, and Java is catering to the needs of WEB applications through standard or non-standard frameworks. First of all, PHP can adopt distributed deployment for large system loads. Separate the database, application logic layer, and presentation logic layer from each other, and separate the same layers based on traffic. PHP does an excellent job in this regard.
Java can also obtain scale support through Class and EJB, and structure support through EJB/CORBA and ApplicationServer from many vendors. In terms of communicating with existing Java or .NET applications, PHP can communicate through existing API interfaces. As for the data used in data communication, it is nothing more than XML, JSON, etc. In fact, Java has been deeply rooted in enterprise-level E-ization and key business applications. However, in Web applications, the market share of the Java language has dropped sharply, and the decline is obvious.
6. Comparison of development and subsequent maintenance costs
Since PHP is stronger than Java in many aspects of Internet applications, why are e-commerce products developed by Java different from PHP products? What about competition? This is because the Java camp generally takes the government line, while the PHP camp takes the national line. PHP has a low entry barrier, but becoming a master in any aspect is one of the best. The vast majority of programmers who have learned C can easily transform into PHP programmers, which makes PHP programmers as popular as national sports. There are also many experts, and high-quality PHP software products are emerging in endlessly. In comparison, the cost of JAVA is much higher than PHP.
7. Degree of productization
When developing in Java, almost no programmer will start from the bottom, because they are all encapsulated classes. This is actually an important reason why it is difficult to productize Java. Because almost all programmers can do relatively shallow application development. As far as Java classes are concerned, when placed on the Internet, there is only one thing that can be described as heavy.
As most business applications including CRM, ERP, reports, document management, etc. have also turned to the Web, looking around, there are a dazzling array of PHP products. In terms of Internet applications, it can be said responsibly that, The coverage rate is above 99%. Although the quality of many products varies, there are some representative products in each direction and field.
The degree of productization is an important data that directly supports the degree of industrialization. Tools that cannot be industrialized are actually very sad in themselves.
Recommended tutorial: PHP video tutorial
The above is the detailed content of The obvious difference between php and java development languages. For more information, please follow other related articles on the PHP Chinese website!

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version
