PHP knowledge that is often easily forgotten_PHP tutorial
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.
<ol class="dp-c"><li class="alt"><span><span class="vars">$r</span><span> = print </span><span class="string">"Hello World"</span><span>; </span></span></li></ol>
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:
<ol class="dp-c"> <li class="alt"><span><span class="keyword">if</span><span>(</span><span class="vars">$a</span><span>){ </span></span></li> <li> <span class="keyword">include</span><span>(</span><span class="string">"a.php"</span><span>); </span> </li> <li class="alt"><span>} </span></li> </ol>
and require() is different from include(), no matter what value $a takes, the following The code will include the file a.php into the file:
<ol class="dp-c"> <li class="alt"><span><span class="keyword">if</span><span>(</span><span class="vars">$a</span><span>){ </span></span></li> <li> <span class="keyword">require</span><span>(</span><span class="string">"a.php"</span><span>); </span> </li> <li class="alt"><span>} </span></li> </ol>
In terms of error handling, use the include statement. If an inclusion error occurs, the program will skip the include statement. Although the error message will be displayed, the program will still Will continue to implement! 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 like, simple require_once() and include_once() statements respectively correspond to require () and include() statements. 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 both stored with a value of 0, but their types It's not the same. You can try echo gettype(''); and echo gettype(NULL); and you will find that they print 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). It can be seen that string (''), NULL and 0 are "equal values" but not of different types.
5. The difference between isset and empty
From the literal meaning, we can understand: empty is to judge whether a variable is "empty", while isset is to judge whether 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. , look at the example below:
<ol class="dp-xml"> <li class="alt"><span><span>$</span><span class="attribute">id</span><span>=</span><span class="attribute-value">0</span><span>; </span></span></li> <li><span>empty($id)?print "我是空的":print "我是$id ."; //结果:我是空的 </span></li> <li class="alt"><span>!isset($id)?print "我是空的":print "我是$id .";//结果:我是0 </span></li> </ol>
6. The difference between == (equal) and === (equal)
Review the fourth null character above The difference between string ("") and NULL, let's look at another example:
<ol class="dp-c"> <li class="alt"><span><span class="string">''</span><span> == NULL; </span></span></li> <li> <span class="string">''</span><span> === NULL; </span> </li> </ol>
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 If it is declared as const (defining constants) or static (declaring static), then the operator:: must be used. On the contrary, if the referenced 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. Self-referential $this.
8. The difference between strstr() and strpos()
stristr() is not case-sensitive strstr() is case-sensitive
Function search The first occurrence of a string within another string.
If successful, returns the rest of the string (from the point of the match). If the string is not found, returns false.
stripos() case-insensitive strpos() case-sensitive
The function returns the position of the first occurrence of a string within another string.
Returns false if the string is not found.
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. The ServerName in apache’s conf is set correctly
3. HTTP/1.1 protocol specification
Differences:
1. Normal situation:
_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, the ServerName value in the apache configuration file httpd.conf is directly output.
2. When the server is not on 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 is configured 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
Therefore, in actual programs, you should try to use _SERVER["HTTP_HOST "], relatively safe and reliable.
If you are using port mapping and accessing from the intranet, it is better to use "$_SERVER['HTTP_X_FORWARDED_HOST']".
Original address:

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











PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP uses MySQLi and PDO extensions to interact in database operations and server-side logic processing, and processes server-side logic through functions such as session management. 1) Use MySQLi or PDO to connect to the database and execute SQL queries. 2) Handle HTTP requests and user status through session management and other functions. 3) Use transactions to ensure the atomicity of database operations. 4) Prevent SQL injection, use exception handling and closing connections for debugging. 5) Optimize performance through indexing and cache, write highly readable code and perform error handling.

PHP is used to build dynamic websites, and its core functions include: 1. Generate dynamic content and generate web pages in real time by connecting with the database; 2. Process user interaction and form submissions, verify inputs and respond to operations; 3. Manage sessions and user authentication to provide a personalized experience; 4. Optimize performance and follow best practices to improve website efficiency and security.

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

The core benefits of PHP include ease of learning, strong web development support, rich libraries and frameworks, high performance and scalability, cross-platform compatibility, and cost-effectiveness. 1) Easy to learn and use, suitable for beginners; 2) Good integration with web servers and supports multiple databases; 3) Have powerful frameworks such as Laravel; 4) High performance can be achieved through optimization; 5) Support multiple operating systems; 6) Open source to reduce development costs.

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

PHP is suitable for web development and content management systems, and Python is suitable for data science, machine learning and automation scripts. 1.PHP performs well in building fast and scalable websites and applications and is commonly used in CMS such as WordPress. 2. Python has performed outstandingly in the fields of data science and machine learning, with rich libraries such as NumPy and TensorFlow.
