


PHP is easy to confuse knowledge and organizes notes_php basics
1. The difference between echo and print
The functions of echo and print in PHP are basically the same (output), but there are still subtle differences between the two. There is no return value after echo output, but print has a return value, and it returns false when its execution fails. Therefore, it can be used as a normal function. For example, after executing the following code, the value of variable $r will be 1.
1 |
|
This means that print can be used in some complex expressions, but echo cannot. However, because the echo statement does not require any value to be returned, the echo statement in the code runs slightly faster than the print statement.
2.The difference between include and require
The functions of include() and require() are basically the same (include), but there are some differences in usage. include() is a conditional inclusion function, while require() is an unconditional inclusion function. For example, in the following code, if the variable $a is true, the file a.php will be included:
1 2 3 |
|
And require() is different from include(). No matter what value $a takes, the following code will include the file a.php into the file:
1 2 3 |
|
In terms of error handling, use the include statement. If an include error occurs, the program will skip the include statement. Although the error message will be displayed, the program will continue to execute! But require will give you a fatal error.
Of course, we can also understand Qifen literally: require means a very strong request or requirement.
3.require_once() and include_once() statements
I’m off topic, because they look similar. Simple require_once() and include_once() statements correspond to require() and include() statements respectively. The require_once() and include_once() statements are mainly used when multiple files need to be included, which can effectively avoid errors in repeated definitions of functions or variables caused by including the same piece of code.
4. The difference between empty string ('') and NULL
Empty strings and NULL in PHP are stored with a value of 0, but their types are different. You can try echo gettype(''); and echo gettype(NULL); and you will find that they print out are string and NULL respectively. Of course, 0 is also easy to confuse. You can try echo gettype(0); if you print the type, you will find that the type of 0 is integer (integer). You can see string (''), NULL and 0 are "equal" but not of equal type.
5.The difference between isset and empty
We can understand from the literal meaning: empty is to determine whether a variable is "empty", while isset is to determine whether a variable has been set. But there is one thing you must pay attention to here: when the value of a variable is 0, empty considers the variable to be equal to empty, which is equivalent to no setting. For example, when we detect the $id variable, when $id=0, we use empty and isset to detect whether the variable $id has been configured. Both will return different values: empty thinks it is not configured, and isset can get the value of $id. , see the example below:
1 2 3 |
|
6. The difference between == (equal) and === (equal)
Review the fourth difference between empty string ("") and NULL above, let’s look at another example:
1 2 |
|
After running it, you will find that the first one is true, and the second one is false! It can be seen that == only compares whether the values are equal, while === not only compares the values, but also compares the types, which is more strict.
7. The difference between self :: and this->
When accessing member variables or methods in a PHP class, if the referenced variable or method is declared as const (defining constant) or static (declaring static), then you must use the operator::, otherwise if it is referenced The variable or method is not declared as const or static, then the operator -> must be used.
In addition, if you access a const or static variable or method from within the class, you must use self-reference. On the contrary, if you access a non-const or static variable or method from within the class, you must use self-reference. $this.
8. The difference between strstr() and strpos()
stristr() is not case sensitive strstr() is case sensitive
The function finds the first occurrence of a string within another string.
If successful, return the rest of the string (from the point of the match). If the string is not found, returns false.
stripos() is not case sensitive strpos() is case sensitive
The function returns the position of the first occurrence of a string within another string.
If the string is not found, return false.
Tests have proven that if you just search to determine whether it exists, the execution efficiency of strpos() is greater than strstr()
9.HTTP_HOST and SERVER_NAME in PHP
Same points:
When the following three conditions are met, both will output the same information.
1. The server is port 80
2. ServerName in apache’s conf is set correctly
3. HTTP/1.1 protocol specification
Differences:
1. Usually:
_SERVER["HTTP_HOST"] Under the HTTP/1.1 protocol specification, information will be output according to the client's HTTP request.
_SERVER["SERVER_NAME"] by default directly outputs the ServerName value in apache's configuration file httpd.conf.
2. When the server is not port 80:
_SERVER["HTTP_HOST"] will output the port number, for example: mimiz.cn:8080
_SERVER["SERVER_NAME"] will directly output the ServerName value
So in this case, it can be understood as: HTTP_HOST = SERVER_NAME : SERVER_PORT
3. When the ServerName in the configuration file httpd.conf is inconsistent with the domain name requested by HTTP/1.0:
httpd.conf configuration is as follows:
ServerName mimiz.cn
ServerAlias www.mimiz.cn
Client access domain name www.mimiz.cn
_SERVER["HTTP_HOST"] output www.mimiz.cn
_SERVER["SERVER_NAME"] output mimiz.cn
So, in actual programs, you should try to use _SERVER["HTTP_HOST"], which is safer and more reliable.
If you are using port mapping and accessing from the intranet, it is better to use "$_SERVER['HTTP_X_FORWARDED_HOST']".
After the editor has sorted out the above knowledge points, if your thinking becomes clearer and if you have a distinction between these concepts, then collect these notes!

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Session hijacking can be achieved through the following steps: 1. Obtain the session ID, 2. Use the session ID, 3. Keep the session active. The methods to prevent session hijacking in PHP include: 1. Use the session_regenerate_id() function to regenerate the session ID, 2. Store session data through the database, 3. Ensure that all session data is transmitted through HTTPS.

In PHP, exception handling is achieved through the try, catch, finally, and throw keywords. 1) The try block surrounds the code that may throw exceptions; 2) The catch block handles exceptions; 3) Finally block ensures that the code is always executed; 4) throw is used to manually throw exceptions. These mechanisms help improve the robustness and maintainability of your code.

There are four main error types in PHP: 1.Notice: the slightest, will not interrupt the program, such as accessing undefined variables; 2. Warning: serious than Notice, will not terminate the program, such as containing no files; 3. FatalError: the most serious, will terminate the program, such as calling no function; 4. ParseError: syntax error, will prevent the program from being executed, such as forgetting to add the end tag.

In PHP, the difference between include, require, include_once, require_once is: 1) include generates a warning and continues to execute, 2) require generates a fatal error and stops execution, 3) include_once and require_once prevent repeated inclusions. The choice of these functions depends on the importance of the file and whether it is necessary to prevent duplicate inclusion. Rational use can improve the readability and maintainability of the code.

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

HTTP request methods include GET, POST, PUT and DELETE, which are used to obtain, submit, update and delete resources respectively. 1. The GET method is used to obtain resources and is suitable for read operations. 2. The POST method is used to submit data and is often used to create new resources. 3. The PUT method is used to update resources and is suitable for complete updates. 4. The DELETE method is used to delete resources and is suitable for deletion operations.
