search

OA on the market now can basically be divided into two camps, namely the php camp and the java camp. But for users who have been in contact with Oa for a short time, they often see only their appearances and obvious price differences, but it is difficult to see the actual differences between them. In fact, the worthlessness of PHP and MYSQL is not limited to oa software, but in general, the software developed by PHP and MYSQL is not as valuable as the software developed by Java. Why is the OA of PHP and MYSQL not valuable? First you have to understand the difference between php and java.

 1. Comparison of system technical architecture

Layering is a way to effectively organize a 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. PHP can only implement a simple distributed two- or three-layer architecture, while JAVA is very powerful in this regard and can implement a multi-layer network architecture. Using the MVC design pattern, the oa system can have a more efficient and reasonable system architecture. The backwardness of the technical architecture makes the oa software system written in PHP inherently deficient, and the acquired disadvantages cannot be compensated for. This makes the gap between the system and the OA software system written in JAVA increasing in terms of scalability and demand adaptability. The gap in architecture has destined that the OA made by PHP is at best a small-scale jasper, and it has never been able to compete with the ladies like Java.

2. Database access comparison

PHP can be compiled with functions to 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. However, the database interface support provided by PHP is not unified with each other. For example, the interfaces to Oracle, MySQL, and Sybase are different from each other. Since PHP uses different database access interfaces for different databases, the database access code is not very versatile.

Java accesses the database through JDBC, and can easily access the database through database drivers provided by different database vendors. The interface for accessing the database is relatively unified. If the developed web application is also transferred from MYSQL data to ORACLE data, PHP needs to do a lot of modification work, and it is relatively cumbersome. But JAVA development can be implemented with only a few changes.

The difference in database access methods lays the foundation for the difference between oa developed by php and oa developed by java, which is a carriage and a train. The former can only follow the same pace and has a limited amount, but the latter is the crystallization of industrialization and can not only accommodate everything but also Steady improvement in speed.

 3. Safety comparison

In the face of Java, which is also open source and cross-platform, PHP has lost many advantages. Especially outstanding in the security of code. The PHP development program can be easily modified after others get the code. Programs developed in Java are more secure because they cannot see the complete source code and can only see some compiled class files. Coupled with the advantages of system architecture, PHP and Java are far apart in terms of security.

If you have to compare the security of PHP and Java, if the same thief patronizes PHP, he will just use it and change it casually. This trip. When you visit Java, you will find police guarding it and an automatic alarm device inside, even if you break through many obstacles and enter the room. Those valuable things are all placed in the encrypted safe, and they can only return with disappointment and disappointment.

4. Foresight and scalability

On the whole, php is suitable for small and medium-sized systems, while java is suitable for large systems. Php can handle a single event well, but it is not suitable for completing multiple concurrent events with a high degree of integration. Why is PHP suitable for small and medium-sized systems but not for large systems?

First of all, PHP lacks multi-layer structure support. For large system load sites, distributed computing can only be used. Separate the database, application logic layer and presentation logic layer from each other, and separate the same layers based on traffic to form a two-dimensional array. And php just lacks this support.

Secondly, the database interface provided by PHP is not unified, and it takes a lot of effort to unify data from multiple different databases. JAVA does not have this defect. It can obtain scale support through SUN Java's Java Class and EJB, and obtain structural support through EJB/CORBA and Application Servers from many manufacturers. For example, IBM's E-business, its core is Web Sphere using JSP/Servlet, which is supported through CGI.

If Php is compared to a general, he has the ability to stand alone. Then Java is a talented person, with good foresight and scalability, and strong overall layout and collaborative capabilities. Able to command thousands of troops and horses, and finally compete in the Central Plains.

5. Development cost comparison

Since PHP is not as good as Java in many aspects, how can the OA products developed by PHP compete with Java products? The reason is that the Php camp generally takes the low-end route, while the Java camp takes the mid-to-high-end route. The area of ​​intersection between the two is smaller.

The price of software is largely linked to its own cost and functionality. The entry threshold for PHP is low, and most programmers who have studied C can easily transform into PHP programmers. This has led to the proliferation of PHP programmers, and at the same time, low-cost PHP software products have also emerged in an endless stream. Take PHP's most classic combination PHP MySQL Apache as an example. Since all software is open source and free, the investment is not high.

And Java development requires a specific environment, and it takes a certain amount of time to grow into a qualified Java programmer. The cost of a Java programmer is also several times the cost of PHP. Free Java web application servers include Tomcat, JBoss, etc., but if you want to have good commercial services, you must choose Web Sphere and Web logic. The cost invested in this is virtually N times the cost of php. Therefore, the cost of developing OA in Java is much higher than that of similar software products developed in PHP. However, precisely because of the high cost of Java development, it is difficult to plagiarize and surpass in the short term, which also makes the threshold for products developed using Java higher.

Don’t be afraid of not knowing the goods, just be afraid of comparing goods. Products developed in Php can also be used, but they are incomparable with similar products developed in Java. Precisely because the overall performance of products developed by PHP is far from those developed by Java, PHP uses its low-cost advantage to compete with similar Java products, using the price gap to balance the mentality of buyers. Therefore, it is not surprising that OA of PHP and MYSQL is not valuable

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

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

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

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

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

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

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

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

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

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

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

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

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

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

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

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

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version