Home > Article > Backend Development > Which is simpler, flask or php?
PHP and HTML work very well together. Modify file.html to file.php, you can write PHP code in the tags, and the default configuration of most
web servers is to run PHP scripts directly. Precisely because the threshold is very low, novice programmers who do not need to know much programming knowledge can directly start the
operation, resulting in a lot of low-quality code.
Because of its ease of learning, a large number of novice programmers have poured in, exposing another problem that PHP has been criticized for: PHP is not the best web server-side language for itself
There was a clear vision, but certainly not a very good design for it. This led to another result, a loose collaboration from all over the world, a hodgepodge of contributed code and ideas, and inevitably, some bad ideas seeped into it.
The more obvious advantages of phpOpen source: means you can use or view the underlying language or program freely and free of charge;
Apply to the Web Development field: Not necessarily focused on Web development, but it has relatively large applications in Web development;
High-order dynamic language: It has the characteristics of dynamic language, and most languages for Web applications have this characteristic. ;
Large enough community: There are many languages that meet the above conditions, but are only used in a small range. We use this last condition to filter them out.
Let’s take a look at flask
Flask is a lightweight web application framework written in Python. Based on Werkzeug WSGI (Python Web Server
Gateway Interface, abbreviated as WSGI) is an interface between Python applications or frameworks and Web servers. It has been widely accepted and has basically been achieved. Its portability goals) toolbox and Jinja2 template engine. Flask is licensed under the BSD license. Flask is also called a "microframework" because it uses a simple core and uses
extensions to add additional functionality. Flask does not have a default database or form validation tool. However, Flask retains the flexibility of expansion, and you can use Flask-extension to add
these functions: ORM, form validation tools, file uploads, and various open authentication technologies.
The above is the detailed content of Which is simpler, flask or php?. For more information, please follow other related articles on the PHP Chinese website!