11 Common Mistakes PHP Programmers Make_PHP Tutorial

WBOY
Release: 2016-07-13 10:54:16
Original
1004 people have browsed it

1. Use myisam instead of innodb

MySQL tutorial has many database tutorial engines, but the ones you are most likely to encounter are myisam and innodb.

Mysql uses myisam by default. However, this is a poor choice in many cases unless you are creating a very simple or experimental database. Foreign key constraints or transactions are very important for data integrity, but myisam does not support these. In addition, when a record is inserted or updated, the entire data table is locked, which will produce very poor operating efficiency when usage increases.

The conclusion is simple: use innodb.

2. Use mysql function in php tutorial

PHP has provided mysql library functions since its inception (or near as makes no difference). Many applications still use functions like mysql_connect, mysql_query, mysql_fetch_assoc, etc., although the PHP manual says:

If you are using mysql v4.1.3 or newer, it is highly recommended that you use the mysqli extension.

mysqli (enhanced extension of mysql) has the following advantages:

Optional object-oriented interface
prepared expression, which helps prevent SQL injection attacks and improves performance
Support more expressions and transactions
In addition, if you want to support multiple database systems, you can also consider pdo.

3. User input is not processed

This can be said like #1: Never trust user input. Use server-side php to verify each string, don't rely on web page effects. The simplest SQL injection attack will use the following code:

view sourceprint?1 $username = $_post["name"];

2 $password = $_post["password"];

3 $sql = "select userid from usertable where username='$username' and password='$password';"; 

4 // run query...

As long as you enter "admin';--" in the username field, you will be hacked. The corresponding SQL statement is as follows:

view sourceprint?1 select userid from usertable where username='admin';

A crafty hacker can log in as admin and they don't need to know the password because the password field is commented out.

4. UTF-8 is not used

We in the US, UK and Australia rarely consider languages ​​other than English. We proudly complete our "masterpieces" only to find that they don't work well elsewhere.

utf-8 solves many internationalization problems. Although it is not well supported before PHP v6.0, this does not affect your setting the MySQL character set to UTF-8.

5. Prefer php over sql

If you have been exposed to MySQL for a short time, you will tend to use the language you have already mastered to solve problems, which will lead to writing some redundant and inefficient code. For example, you would not use the avg() function that comes with MySQL, but you would first sum the values ​​in the record set and then use a PHP loop to calculate the average.

Also, please pay attention to the sql query in the php loop. Generally speaking, executing a query is more efficient than iterating through the results.

So, please take advantage of the database system when analyzing data. Knowing some SQL will be of great benefit.

6. No optimization of database query

99% of PHP performance problems are caused by the database. Just one bad SQL query can completely paralyze your web application. MySQL's explain statement, query profiler, and many other tools will help you identify these evil choices.

7. Inability to use data types correctly

MySQL provides data types such as numeric, string and date. If you want to store a time, use date or datetime types. If you use integer or string type at this time, it will make the SQL query very complicated, provided that you can use integer or string to define that type.

Many people tend to customize the format of some data without authorization, for example, using string to store serialized PHP objects. This may make the database easier to manage, but it will make MySQL a poor data store and likely to cause failures later.

8. Use *

in query

Never use * to return data for all columns of a data table. This is laziness: you should extract the data you need. Even if you need all the fields, your data table will inevitably change.

9. Not using indexes or overusing indexes

The general principle is this: any field represented by a where clause in the select statement should use an index.

For example, suppose we have a user table, including numeric id (primary key) and email address. When logging in, mysql must look for the correct ID based on an email. If an index is used (here refers to email), then MySQL can use a faster search algorithm to locate email, and it can even be said to be instantaneous. Otherwise, MySQL can only check each record sequentially until it finds the correct email address.

Some people will add indexes to each field. Unfortunately, these indexes need to be regenerated after executing insert or update, which will affect performance. So, add indexes only when needed.

10. Forgot to back up!

Although rare, there is still a risk of database crash. Hard drives can get damaged, servers can crash, and web hosting providers can go bankrupt! Losing your MySQL data would be catastrophic, so make sure you have used automatic backups or have copies in place.

11. Bonus mistake-do not consider using other databases

For PHP developers, MySQL may be the most widely used database system, but it is not the only choice. PostgreSQL and Firebird are the strongest contenders: both are open source and neither has been acquired by the company. Microsoft provides SQL Server Express and Oracle provides 10g Express, both of which are free versions of enterprise-level databases. Sometimes, for a smaller web application or embedded application, sqlite is also a feasible alternative

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/632324.htmlTechArticle1. Use myisam instead of innodb. There are many database tutorial engines for mysql tutorials, but the one you are most likely to encounter is myisam. and innodb. Mysql uses myisam by default. However, in many cases...
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!