


Detailed explanation of the difference between PHP isset() and empty()_PHP tutorial
PHP’s isset() function is generally used to detect whether a variable is set
Format: bool isset (mixed var [, mixed var [, ...]])
Function: Detection Whether the 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, then TRUE is returned
When checking multiple variables at the same time, 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 Note:
After using unset() to release a variable, it will no longer be 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 a value is empty
Format: bool empty (mixed var)
Function: Check whether a variable Is empty
Return value:
If the variable does not exist, return TRUE
If the variable exists and its value is "", 0, "0", NULL,, FALSE, array( ), var $var; and objects without any attributes, return TURE
If the variable exists and the value is not "", 0, "0", NULL,, FALSE, array(), var $var; and none Object of any attribute, returns FALSE
Version: PHP 3, PHP 4, PHP 5
More explanation:
The return value of empty() =! (boolean) var, but it will not be because the variable is not Define a warning message. 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 of empty() and isset()
< ?php
$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 is 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 called by variable functions.
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 Home. After reading this, it is basically the same:
error_reporting(E_ALL);
echo 'undefined$var
';
echo "isset test:< ;Br>";
if ( isset ( $var ))
{
echo 'Variable $var exists!
' ;
}
echo "empty test:< Br>";
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 = ''< /b>
';
echo "isset test:
";
$var = '';
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 "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:< ;Br>";
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 = null b>
';
echo 'isset test:
';
$var = null ;
if ( isset ( $var ))
{
echo ' Variable $var exists!
' ;
}
echo "empty test:
";
if ( empty ( $var )){
echo ' of variable $var The value 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 '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!
';
}
?>
When using PHP to write page programs, I often use variable processing functions to determine whether a variable value at the end of the PHP page is empty. At the beginning, I was used to I tried to use the empty() function, but found some problems, so I switched to the isset() function and the problem disappeared.
As the name suggests, empty() determines whether a variable is "empty", and isset() determines whether a variable has been set. It is this so-called "as the name implies" that made me take some detours at the beginning: when a variable value is equal to 0, empty() will also be true (True), so some accidents will occur. It turns out that although empty() and isset() are both variable processing functions, they are both used to determine whether the variable has been configured, but they have certain differences: empty will also detect whether the variable is empty or zero. When a variable value is 0, empty() considers the variable to be equivalent to being empty, which is equivalent to not being set.
For example, to detect the $id variable, when $id=0, use empty() and isset() to detect whether the variable $id has been configured. Both will return different values - empty() considers it not configured, isset () can get the value of $id:
$id=0;
empty($id)?print "It's empty .":print "It's $id .";
//Result: It's empty .
print "
";
!isset( $id)?print "It's empty .":print "It's $id .";
//Result: It's 0 .
This means that when we use the variable processing function, when the variable may have a value of 0, be careful when using empty(). It is more sensible to replace it with isset at this time.
When the URL tail parameter of a php page appears id=0 (for example: test.php?id=0), try to compare:
if(empty($id)) $id=1; - If id=0, id will also be 1
if(!isset($id) )) $id=1; - If id=0, id will not be 1
You can run the following code separately to detect the above inference:
if(empty($id)) $id=1;
print $id; // get 1
if(!isset($id)) $id=1;
print $id; //get 0
To talk about their connection, their common point is empty( ) and isset() are both variable processing functions. Their function is to determine whether the variable has been configured. It is precisely because of their great similarity in the process of processing variables that they have insufficient understanding of their relationship. If you only consider the two functions empty() and isset() themselves, it will make people more confused. Look at it from another angle. The processing objects of empty() and isset() are nothing more than undefined variables, 0, and empty strings.
If the variable is 0, empty() will return TRUE, isset() will return TRUE;
If the variable is an empty string, empty() will return TRUE, isset() will return TRUE ;
If the variable is not defined, empty() will return TRUE and isset() will return FLASE;
The explanation of empty() in the manual is as follows:
Description bool empty( mixed var)
If var is a non-empty or non-zero value, empty() returns FALSE. In other words, "", 0, "0", NULL, FALSE, array(), var $var; and objects without any properties will be considered empty, and TRUE will be returned if var is empty.
The explanation of isset() in the manual is as follows:
isset() detects whether the variable is set
Description bool isset ( mixed var [, mixed var [, ...]] )
Returns TRUE if var exists, otherwise returns FALSE.
If a variable has been released using unset(), it will no longer be isset(). If you use isset() to test a variable that is set to NULL, it will return FALSE. Also note that a NULL byte ("?") is not equivalent to PHP's NULL constant.
Warning: isset() can only be used with variables, as passing any other arguments will cause a parsing error. If you want to check whether a constant has been set, you can use the defined() function.
When you want to determine whether a variable has been declared, you can use the isset function
When you want to determine whether a variable has been assigned data and is not empty, you can use the empty function
When you want to determine whether a variable has been assigned data and is not empty, you can use the empty function If the variable exists and is not empty, first use the isset function and then use the empty function

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

AI Hentai Generator
Generate AI Hentai for free.

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

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.

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.

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.

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,

The main difference between Doubao and DeepSeek is: 1. Doubao is a keyword search engine that relies on keyword matching; DeepSeek is a semantic search engine that understands the semantics of search requests. 2. The source of bean bag data is wide but the quality is uneven. The DeepSeek data is more authoritative but the coverage may be narrow. 3. The bean bun results are presented in a list form, and DeepSeek may provide richer answers and context information. 4. Bean buns are easy to use, and DeepSeek may require more complex query statements. Therefore, bean bread is suitable for quickly finding information, while DeepSeek is suitable for in-depth semantic search and information mining, and the choice depends on the specific needs.

There is no built-in sum function in C language, so it needs to be written by yourself. Sum can be achieved by traversing the array and accumulating elements: Loop version: Sum is calculated using for loop and array length. Pointer version: Use pointers to point to array elements, and efficient summing is achieved through self-increment pointers. Dynamically allocate array version: Dynamically allocate arrays and manage memory yourself, ensuring that allocated memory is freed to prevent memory leaks.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

The difference between multithreading and asynchronous is that multithreading executes multiple threads at the same time, while asynchronously performs operations without blocking the current thread. Multithreading is used for compute-intensive tasks, while asynchronously is used for user interaction. The advantage of multi-threading is to improve computing performance, while the advantage of asynchronous is to not block UI threads. Choosing multithreading or asynchronous depends on the nature of the task: Computation-intensive tasks use multithreading, tasks that interact with external resources and need to keep UI responsiveness use asynchronous.
