Home Backend Development PHP Tutorial PHP knowledge that is often easily forgotten_PHP tutorial

PHP knowledge that is often easily forgotten_PHP tutorial

Jul 20, 2016 am 10:58 AM
echo php print Function the difference and Basic of Knowledge

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>
Copy after login

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>
Copy after login

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>
Copy after login

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>
Copy after login

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>
Copy after login

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:

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/445699.htmlTechArticle1. The difference between echo and print The functions of echo and print in PHP are basically the same (output), but the difference between the two There are still subtle differences. There is no return value after echo output, but print has a return value. When...
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Is there any difference between South Korean Bitcoin and domestic Bitcoin? Is there any difference between South Korean Bitcoin and domestic Bitcoin? Mar 05, 2025 pm 06:51 PM

The Bitcoin investment boom continues to heat up. As the world's first decentralized digital asset, Bitcoin has attracted much attention on its decentralization and global liquidity. Although China was once the largest market for Bitcoin, policy impacts have led to transaction restrictions. Today, South Korea has become one of the major Bitcoin markets in the world, causing investors to question the differences between it and its domestic Bitcoin. This article will conduct in-depth analysis of the differences between the Bitcoin markets of the two countries. Analysis of the differences between South Korea and China Bitcoin markets. The main differences between South Korea and China’s Bitcoin markets are reflected in prices, market supply and demand, exchange rates, regulatory supervision, market liquidity and trading platforms. Price difference: South Korea’s Bitcoin price is usually higher than China, and this phenomenon is called “Kimchi Premium.” For example, in late October 2024, the price of Bitcoin in South Korea was once

The difference between Ether and Bitcoin What is the difference between Ether and Bitcoin The difference between Ether and Bitcoin What is the difference between Ether and Bitcoin Mar 19, 2025 pm 04:54 PM

The difference between Ethereum and Bitcoin is significant. Technically, Bitcoin uses PoW, and Ether has shifted from PoW to PoS. Trading speed is slow for Bitcoin and Ethereum is fast. In application scenarios, Bitcoin focuses on payment storage, while Ether supports smart contracts and DApps. In terms of issuance, the total amount of Bitcoin is 21 million, and there is no fixed total amount of Ether coins. Each security challenge is available. In terms of market value, Bitcoin ranks first, and the price fluctuations of both are large, but due to different characteristics, the price trend of Ethereum is unique.

What exchange is Nexo? Is Nexo exchange safe? What exchange is Nexo? Is Nexo exchange safe? Mar 05, 2025 pm 07:39 PM

Nexo: Not only is it a cryptocurrency exchange, but also your digital financial manager. Nexo is not a traditional cryptocurrency exchange, but a financial platform that focuses more on cryptocurrency lending. It allows users to obtain loans in cryptocurrency as collateral and provides services to earn interest. While Nexo also offers cryptocurrency buying, selling and redemption capabilities, its core business is crypto lending. This article will explore the operating model and security of Nexo in depth to provide investors with a more comprehensive understanding. Nexo's operating model was founded in 2018 and is headquartered in Zug, Switzerland, and is a pioneer in the field of digital finance. It is different from other centralized exchanges and focuses more on providing comprehensive financial services. Users can buy, sell, trade cryptocurrencies without selling assets and

What is the difference between bean bread and deepseek What is the difference between bean bread and deepseek Mar 12, 2025 pm 01:24 PM

The core difference between bean bun and DeepSeek is retrieval accuracy and complexity. 1. Doubao is based on keyword matching, simple and direct, with low cost, but low accuracy, and is only suitable for structured data; 2. DeepSeek is based on deep learning, can understand semantics, has high accuracy, but high cost, and is suitable for unstructured data. The final choice depends on the application scenario and resource limitations. If the accuracy requirements are not high, choose bean bags, and if you pursue high precision, choose DeepSeek.

Crypto investment mentality is very important! How to avoid unnecessary worries and make correct decisions? Crypto investment mentality is very important! How to avoid unnecessary worries and make correct decisions? Mar 05, 2025 pm 07:24 PM

Fear, uncertainty and doubt of crypto investment: How to make informed decisions? Many crypto investors face fears of “this is the last cycle”, as well as concerns about the duration of the bull market, coupled with pressure from others, which together lead to poor investment decisions. This article will explore how to overcome these challenges and make smarter investment choices. Potential risk: Distraction: Blindly chase hot spots and ignore the value of core assets. Pessimism and hesitation: Uncertainty leads to lack of confidence, inability to hold for a long time, and even exit from the market. Lack of belief: Lack of in-depth research on projects and cannot cope with market volatility. Lack of profit-making strategies: clearing positions early due to fear of pullbacks, missing potential returns. Coping strategies: 1. Focus on core areas:

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

Detailed introduction to Ouyi okex opening and closing time Detailed introduction to Ouyi okex opening and closing time Mar 18, 2025 pm 01:06 PM

The Ouyi OKEx digital asset trading platform is different from the traditional securities market. It is open for trading 24 hours a day, and users can conduct fiat currency trading, currency trading and contract trading at any time. However, the platform will announce in advance and temporarily adjust trading time or rules in case of system maintenance upgrades or special market events (such as extreme market conditions causing severe market fluctuations), such as suspending trading or modifying contract trading position opening rules. Therefore, it is recommended that users pay close attention to platform announcements and market trends, seize trading opportunities and do a good job in risk management. Only by understanding Ouyi OKEx trading time and rule adjustments can you be at ease in the digital currency market.

What is Binance Smart Arbitrage? Binance Smart Arbitrage beginners' use steps What is Binance Smart Arbitrage? Binance Smart Arbitrage beginners' use steps Mar 05, 2025 pm 06:42 PM

Binance Smart Arbitrage: A Guide to Easing U.S. Passive Income of USDT Binance Smart Arbitrage is an automated arbitrage tool provided by Binance Platform. It uses futures and spot arbitrage strategies to help users earn capital rate returns in a relatively low-risk environment. This article will explain its operating principles in detail and provide a guide to beginners. 1. What is Binance Smart Arbitrage? Binance Smart Arbitrage belongs to Binance's "advanced currency earning" product, which automatically implements the futures and spot arbitrage strategy. Users only need to select the currency and invest in USDT, and the system will automatically buy in the spot market and sell equivalent assets in the perpetual contract market to hedge price risks, and the final return comes from the capital fee rate. 2. Detailed explanation of futures and spot arbitrage principle. Futures and spot arbitrage refers to an arbitrage strategy that performs opposite operations in the spot market and the perpetual contract market at the same time. example

See all articles