PHP programming guidelines that PHP programmers must follow _ PHP Tutorial

Source: Internet
Author: User
PHP programming principles that PHP programmers must follow. How can PHP programmers become excellent PHP developers by following the PHP programming principles? This must be a question raised by every new PHP beginner. In fact, to become a PHP programming expert and PHP programmers must follow the PHP programming principles

How can we become a good PHP developer? This must be a question raised by every new PHP beginner. In fact, it is not easy to become a PHP programming master. The real PHP Master still needs to consider more other issues. So how can we become a good PHP developer faster? Let's take a look at the green tea editor!

The following three principles should be followed by a mature PHP programmer in programming:

◆ Laziness is gold

◆ Write beautiful code

◆ The pursuit of program speed, rather than programming speed

Laziness is gold

For a programmer, there are two lazy methods:

First, use the code of someone else to integrate the code into your own program or project. The second is to write some useful code to create a function library, which can be easily written in the future, saving a lot of repetitive work, so you can naturally be a little lazy. Both of these methods are very suitable for PHP programmers.

First of all, PHP is a language born and grown in a free and open environment. There are thousands of programmers around the world who are constantly striving for PHP perfection and are willing to share their talents and code with others. Every day, you can find a lot of excellent program code from some PHP websites, email lists, and newsgroups.

Next, we will introduce several common functions, some of which come from some open source projects on the internet and some of which are selected from the mail list. If you can add them to your own function library, sooner or later you will find yourself benefiting.

1. common database processing functions

Compared with other CGI functions, one of the advantages of PHP is its powerful database processing capability. However, in PHP, some specific functions are used for different databases for special processing, and common database processing functions are missing. This greatly reduces the portability of program code, which also brings a lot of inconvenience to beginners.

On the Internet, many programmers solve this problem through encapsulation. They have compiled unified functions to deal with any popular databases-Mysql, which is popular in the Linux world, and SqlServer, which is widely used on Windows platforms.

Some excellent PHP developers like to use these functions, because they can directly use some simple functions such as "query" and "next_record, you do not need to consider the complex things such as database connection and database handle, and do not need to consider what type of database is used. If you need these functions, you can access the following URLs:

Http://phplib.netuse.de/

◆ Http://phpclasses.UpperDesign.com/browse.html/package/20

Http://phpdb.linuxbox.com/

2. variable debugging functions

Debugging PHP programs has always been a headache. it does not have an integrated compilation and debugging environment like other advanced languages such as VB, and do not want Perl to run in a Linux or DOS environment. In fact, we can use echo statements flexibly to Debug PHP. The following functions allow you to view the types and values of any variables in the program at any time.

Function ss_array_as_string (& $ array, $ column = 0) {$ str = "Array (n"; while (list ($ var, $ val) = each ($ array )) {for ($ I = 0; $ I <$ column + 1; $ I ++) {$ str. = "";} $ str. = $ var. ==>; $ str. = ss_as_string ($ val, $ column + 1 ). "n" ;}for ($ I = 0; $ I <$ column; $ I ++) {$ str. = "";} return $ str .);} function ss_object_as_string (& $ object, $ column = 0) {if (emptyempty ($ object-> classname) {return "$ object ";} else {$ str = $ object-> classname. "(n"; while (list (, $ var) = each ($ object-> persistent_slots) {for ($ I = 0; $ I <$ column; $ I ++) {$ str. = "";} global $ var; $ str. = $ var. ==>; $ str. = ss_as_string ($ var, column + 1 ). "n" ;}for ($ I = 0; $ I <$ column; $ I ++) {$ str. = "";} return $ str .);}} function ss_as_string (& $ thing, $ column = 0) {if (is_object ($ thing) {return ss_object_as_string ($ thing, $ column );} elseif (is_array ($ thing) {return ss_array_as_string ($ thing, $ column);} elseif (is_double ($ thing) {return "Double (". $ thing. ")";} elseif (is_long ($ thing) {return "Long (". $ thing. ")";} elseif (is_string ($ thing) {return "String (". $ thing. ")";} else {return "Unknown (". $ thing. ")";}}

When necessary, simply add the following code to the program to view the types and values of the variables used in the program (including arrays and objects:

Echo ss_as_string ($ my_variable );

Using the following statement, we can directly view the values of all the variables in the program:

Echo ss_as_string ($ GLOBALS );

3. functions that control Log information

Another important method for debugging PHP programs is to view Log information. If you can easily control the Log information level and the Log information display content, it will bring more convenience to program debugging. The following functions can be easily implemented.

$ Ss_log_level = 0; $ ss_log_filename =/tmp/ss-log; $ ss_log_levels = array (NONE => 0, ERROR => 1, INFO => 2, DEBUG => 3); function ss_log_set_level ($ level = ERROR) {global $ ss_log_level; $ ss_log_level = $ level;} function ss_log ($ level, $ message) {global $ ss_log_level, $ ss-log-filename; if ($ ss_log_levels [$ ss_log_level] <$ ss_log_levels [$ level]) {// return false without displaying Log information ;} $ fd = fopen ($ ss_log_filename, "a +"); fputs ($ fd, $ level. -[. ss_timestamp_pretty ().] -. $ message. "n"); fclose ($ fd); return true;} function ss_log_reset () {global $ ss_log_filename; @ unlink ($ ss_log_filename );}

In the above function, there are four Log-level variables. When running a PHP program, the Log information can be recorded and displayed only when the Log level is lower than the preset level value.

For example, add the following statement to the program:

Ss_log_set_level (INFO );

When running a PHP program, only LOG information at the ERROR and INFO level can be recorded and displayed, while DEBUG-level information is ignored. In addition, you can set the displayed information. The statement is as follows:

Ss_log (ERROR, "testing level ERROR ");

Ss_log (INFO, "testing level INFO ");

Ss_log (DEBUG, "testing level DEBUG ");

4. speed test functions

To optimize the code, we need a method that can test the code running time to select the best code. The following function can test the time required to run the code:

Function ss_timing_start ($ name = default) {global $ ss_timing_start_times; $ ss_timing_start_times [$ name] = explode (, microtime ();} function ss_timing_stop ($ name = default) {global $ region; $ ss_timing_stop_times [$ name] = explode (, microtime ();} function ss_timing_current ($ name = default) {global $ ss_timing_start_times, $ ss_timing_stop_times; if (! Isset ($ ss_timing_start_times [$ name]) {return 0;} if (! Isset ($ ss_timing_stop_times [$ name]) {$ stop_time = explode (, microtime ();} else {$ stop_time = $ ss_timing_stop_times [$ name];} $ current = $ stop_time [1]-$ ss_timing_start_times [$ name] [1]; $ current + = $ stop_time [0]-$ ss_timing_start_times [$ name] [0]; return $ current ;}

Now we can easily check the execution time of any piece of code. we can even use multiple timers at the same time, you only need to set different parameters as the timer name when using the above functions.

5. debug and optimize database operations

For databases, the running speed is crucial. Although many books and articles teach you how to quickly run databases, all methods must be tested in practice. Next, we will combine the query () function in the PHPLib function library with the functions described above to compile a new query () function. compared with the original function, this function adds the runtime monitoring function.

Function query ($ Query_String, $ halt_on_error = 1) {$ this-> connect (); ss_timing_start (); $ this-> Query_ID = @ mysql_query ($ Query_String, $ this-> Link_ID); ss_timing_stop (); ss_log (INFO, ss_timing_current (). secs -. $ Query_String); $ this-> Row = 0; $ this-> Errno = mysql_errno (); $ this-> Error = mysql_error (); if ($ halt_on_error &&! $ This-> Query_ID) {$ this-> halt ("Invalid SQL:". $ Query_String);} return $ this-> Query_ID ;}

Write beautiful code 1. separate background programs from front-end programs

When writing a PHP program, some code is used to process some transactions, such as database operations and mathematical operations. other code is only displayed as the result of transaction processing, for example, some PHP code that uses echo statements to display results in HTML format on a Web browser and the HTML code that directly embeds the PHP program. First, we should clearly distinguish the two types of code, the former is called the background program, and the latter is called the front-end program.

Because PHP is an embedded programming language, that is to say, all PHP code can be embedded into HTML code, which brings a lot of convenience for programming. However, if PHP code and HTML code are mixed in a long program, this will make the program messy, not conducive to program maintenance and reading.

Therefore, we need to try to port the PHP code in these programs mixed with HTML code, and encapsulate the code into a function in a special file, then, use the include statement in the HTML code to include these files, and call these functions at the appropriate location.

On the one hand, this method makes HTML code and PHP code easy to read, and on the other hand, because HTML code needs to be constantly updated, and this separation method can ensure that the background program will not be destroyed. Different from front-end programs, background programs are more stable, structured, and rarely changed. Therefore, they should be carefully designed and managed. In fact, it is worthwhile to invest a lot of time in the design of a program. "Planting trees now and enjoying the cold in the future" will make it easy to use the background program compiled in the future design work.

2. flexible use of include files

As mentioned above, background programs should be arranged in a series of include files. The include statement can be used to dynamically load the included files as needed, or the auto_prepend_file command can be used in the php. ini file to automatically load the files in advance. If the latter method is used, although the benefits have been achieved once and for all, there are also some shortcomings that deserve our attention.

The following code shows that it takes some time to parse a large file inclusion:

Require (timing. inc );

Ss_timing_start ();

Include (test. inc );

Ss_timing_stop ();

Echo

. Ss_timing_current ().

;

In the above code, test. inc is a 1000-row file. it takes 0.6 seconds to parse the file. for a large website, this speed is not negligible. Another disadvantage of using include files is that if a statement in a file is incorrect, the PHP program of the entire website cannot run. So be careful when using it. In fact, the inclusion file can be parsed only when necessary.

The following code parses the abc. inc file only when the program needs it:

If (defined (_ LIBA_INC) return;

Define (_ LIBA_INC, 1 );

/** Code ...*/

3. use object-oriented programming methods

PHP is also an object-oriented language. the object-oriented programming method is a software design method highly praised by excellent programmers, in PHP programming, we can give full play to the advantages of object-oriented language and encapsulate the objects in programming. In the previous code, we used an object-oriented method. for example, when managing a database, we encapsulated the query () function into the database class, which greatly facilitates code management, added the readability of the program.

Pursuing program speed rather than programming speed

During website construction, the program running speed and website download speed are important factors that affect the success or failure of the website. As a Web programmer, you should pay more attention to the code running speed. The methods described below increase the code running speed to varying degrees.

1. use embedded HTML code instead of PHP echo statements.

Because PHP is an embedded Web programming language, HTML code and PHP code can be embedded into each other. However, many programmers are worried that the PHP interpreter will be called multiple times when "" is used too much in HTML code to reduce the running speed of PHP code, therefore, we would rather use PHP echo statements to output HTML code rather than directly using HTML code.

But the opposite is true. Every PHP page only calls the PHP interpreter once to explain all the PHP code. Therefore, the PHP code is embedded only when necessary, and most of the time the HTML code is used to input the result directly, this will not only reduce the program running speed, but also reduce the resolution of echo statements, which can often improve the code running speed. The following code proves our conclusion. In this code, we used the time test function described above.

2. use str-replace instead of ereg-replace

Programmers who are familiar with Perl programming are more willing to use ereg_replace to complete string replacement, because the usage of ereg_replace in PHP is similar to that of pattern matching in Perl. However, the following code proves that replacing ereg_replace with str_replace can greatly improve the code running speed.

Test the running speed of str_replace and ereg_replace:

// This code tests the running speed of str_replace emphasis;?>

For ($ I = 0; I I <1000; $ I ++ ){

Str_replace (I>, B>, $ string ).

;

}

// This code tests the running speed of ereg_replace.

For ($ I = 0; I I <1000; $ I ++ ){

Ereg_replace (<([/] *) I >,< \ 1b>, $ string ).

;

}

3. pay attention to string references.

Like many other programming languages, PHP can use double quotation marks (\ "\") to reference strings, or single quotation marks (). However, in PHP, if double quotation marks are used to reference a string, the PHP parser will first analyze whether there is any reference to the variable in the string. if there is a variable, the variable will be replaced. If it is a single quotation mark, it is not so complex-directly display all strings contained in single quotation marks. Obviously, using single quotes to reference string variables in PHP programming is faster than using double quotes.

4. avoid joint operations in the database

Compared with other Web programming languages, PHP databases are very powerful. However, running a database in PHP is still a very time-consuming and laborious task. Therefore, as a Web programmer, we should minimize the number of database queries, at the same time, appropriate indexes should be created for the database.

Another thing worth noting is that when using PHP to operate a database, try not to use the union operation of multiple data tables. even though the union operation can enhance the database query function, but it greatly increases the burden on the server. To illustrate this problem, let's take a look at the simple example below.

Two data tables foo and big_foo are created in the database. In the data table foo, there is only one field that contains all the natural numbers from 1. The data table big_foo also has only one field, but contains all the natural numbers from 1 to 1,000,000. Therefore, in terms of size, big_foo is equal to foo and it performs union operations.

$ Db-> query (\ "select * from foo \");

Secs 0.032273

$ Db-> next_record ();

Secs 0.00048999999999999

$ Db-> query (\ "insert into foo values (NULL )\");

Secs 0.019506

$ Db-> query (\ "select * from foo as a, foo as B \");

Secs 17.280596

$ Db-> query (\ "select * from foo as a, foo as B where a. id> B. id \");

Secs 14.645251

$ Db-> query (\ "select * from foo as a, foo as B where a. id = B. id \");

Secs 0.041269

$ Db-> query (\ "select * from big_foo \");

Secs 25.393672

From the above operation results, we can find that the speed of joining two data tables with 1000 records is not much faster than that of a large data table with 1000000 records.

5. Note the difference between include and require.

In PHP, the include () and require () functions are the same, but there are some differences in usage. include () is a conditional inclusion function, while require () it is an unconditional include function. For example, in the following example, if the variable $ somgthing is true, it will contain the file somefile:

If ($ something ){

Include (\ "somefile \");

}

However, no matter what value $ something takes, the following code will include the file somefile into the file:

If ($ something ){

Require (\ "somefile \");

}

The following interesting example fully demonstrates the differences between the two functions.

$ I = 1;

While ($ I <3 ){

Require (\ "somefile. $ I \");

$ I ++;

}

In this code, each loop contains the same file. Obviously, this is not the original intention of the programmer. from the code, we can see that this code will include different files in each loop. To complete this function, you must turn to the include () function ();

$ I = 1;

While ($ I <3 ){

Include (\ "somefile. $ I \");

$ I ++;

}

6. Note the difference between echo and print.

The echo and print functions in PHP are basically the same, but there are also slight differences between the two. Print can be used as a common function in PHP code. for example, after executing the following code, the value of the variable $ res will be 1.

$ Ret = print \ "Hello World \";

This means that print is available in some complex expressions, but echo is not. Similarly, the echo statement runs slightly faster than the print statement in the code, because the echo statement does not require any value to be returned.

The above is an analysis of the three principles for becoming a good PHP developer. the green tea editor wants to tell friends who are learning PHP at the beginning that everything is difficult and will return if they have to pay.

How can NLP become a good PHP developer? This must be a question raised by every new PHP beginner. In fact, to become a PHP programming expert and...

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.