Home Backend Development PHP Tutorial Introduction to the difference between PHP isset() and empty() functions_PHP tutorial

Introduction to the difference between PHP isset() and empty() functions_PHP tutorial

Jul 13, 2016 pm 05:41 PM
empty isset php generally and introduce function the difference variable Detection of

PHP’s isset() function is generally used to detect whether a variable is set
Format: bool isset ( mixed var [, mixed var [, ...]] )
Function: detect whether a variable is set
Return value:
If the variable does not exist, it returns FALSE
If the variable exists and its value is NULL, it also returns FALSE
If the variable exists and its value is not NULL, it returns TRUE
At the same time When checking multiple variables, TRUE will be returned only when each single item meets the previous requirement, otherwise the result is FALSE
Version: PHP 3, PHP 4, PHP 5
More instructions:
Use unset() After the variable is released, it is no longer isset().
The PHP function isset() can only be used for variables. Passing any other parameters will cause a parsing error.
To check whether a constant has been set, use the defined() function.

PHP's empty() function determines whether the value is empty
Format: bool empty (mixed var)
Function: Check whether a variable is empty
Return Value:
Returns TRUE if the variable does not exist
If the variable exists and its value is "", 0, "0", NULL,, FALSE, array(), var $var; and objects without any attributes , then return TURE
If the variable exists and the value is not "", 0, "0", NULL,, FALSE, array(), var $var; and an object without any attributes, then return FALSE
version : PHP 3, PHP 4, PHP 5
More explanation:
The return value of empty() =! (boolean) var, but no warning message will be generated because the variable is undefined. See Converting to Boolean for more information.
empty() can only be used for variables. Passing any other parameters will cause a Paser error and terminate the operation.
To check whether a constant has been set, use the defined() function.
Example: A simple comparison between empty() and isset()
The code is as follows:
$var = 0;
// The result is true because $var is empty
if (empty($var)) {
echo $var is either 0 or not set at all;
}
// The result is false because $var has been set
if (!isset($var)) {
echo $var is not set at all;
}
?>
Note: Since this is a language structure rather than a function, it cannot be Variable function call.
Note: empty() only detects variables, detecting anything that is not a variable will result in a parsing error. In other words, the following statement will not work: empty(addslashes($name)).
The following is a detailed example code of isset and empty functions that has been tested by Script House. After reading this, it is basically the same:
Copy the code as follows:

error_reporting(E_ALL);
echo undefined $var
;
echo "isset test:
";
if ( isset ( $ var ))
{
echo variable $var exists!
;
}
echo "empty test:
";
if ( empty ( $var )) {
echo The value of the variable $var is empty
;
}
else
{
echo The value of the variable $var is not empty
;
}
echo "Direct variable test:
";
if ( $var ){
echo variable $var exists!
;
}
else {
echo The variable $var does not exist!
;
}
echo --------------------------------- ----
;
echo $var =
;
echo "isset test:
";
$var = ;
if ( isset ( $var ))
{
echo variable $var exists!
;
}
echo "empty test:
";
if ( empty ( $var )){
echo The value of variable $var is empty
;
}
else
{
echo The value of variable $var is not empty
;
}
echo "Direct variable test:
";
if ( $var ){
echo variable $var exists!
;
}
else {
echo variable $var does not exist!
;
}
echo --------------------- -------------
;
echo $var = 0
;
echo isset test:
;
$var = 0 ;
if ( isset ( $var ))
{
echo variable $var exists!
;
}
echo "empty test:
";
if ( empty ( $var )){
echo The value of variable $var is empty
;
}
else
{
echo The value of variable $var is not empty
;
}
echo "Variable direct test:
";
if ( $var ){
echo Variable $var exists!
;
}
else {
echo variable $var does not exist!
;
}
echo ------------- ---------------------
;
echo $var = null
;
echo isset test:
;
$var = null ;
if ( isset ( $var ))
{
echo variable $var exists!
;
}
echo "empty test:
";
if ( empty ( $var )){
echo The value of variable $var is empty
;
}
else
{
echo The value of variable $var is not empty
;
}
echo "Variable direct test:
";
if ( $var ){
echo variable $var exists!
;
}
else {
echo variable $var does not exist!
;
}
echo ----- -----------------------------
;

echo $var ="php "
;
echo isset test:
;
$var = "php";
if ( isset ( $var ))
{
echo variable $var exists!
;
}

echo "empty test:
";
if ( empty ( $var )){
echo variable The value of $var is empty
;
}
else
{
echo The value of variable $var is not empty
;
}
echo "variable Direct test:
";
if ( $var ){
echo variable $var exists!
;
}
else {
echo variable $var does not exist !
;
}
?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/486130.htmlTechArticlePHP’s isset() function is generally used to detect whether a variable is formatted: bool isset ( mixed var [, mixed var [, ...]] ) Function: Check whether the variable is set. Return value: If the variable does not exist, return...
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.

Is there any difference between futures liquidation and forced liquidation? Will futures liquidation forcefully close positions? Is there any difference between futures liquidation and forced liquidation? Will futures liquidation forcefully close positions? Mar 05, 2025 pm 03:24 PM

Filing out positions and forced flooring in cryptocurrency futures trading: The key difference in risk management In cryptocurrency futures trading, the terms "filing out positions" and "forced flooring" are often mixed, but there are key differences between them. Understanding this distinction is crucial for investors to manage risk and develop trading strategies. Although both are intended to protect the risk control mechanisms of traders and exchanges, forced tilting focuses more on the forced tilting of exchanges. Breaking a position and forcibly settled: What is the difference? Both liquidation and forced liquidation refer to the closing measures taken by the exchange when the margin is insufficient, but forced liquidation emphasizes the mandatory nature of the exchange, while liquidation is a broader description. A liquidation refers to the forced liquidation of all positions due to violent market fluctuations and investors' losses exceeding the total margin of the account. Simply put, the liquidation is strong

See all articles