What does isset in php mean?

silencement
Release: 2023-02-24 18:30:01
Original
5841 people have browsed it

What does isset in php mean?

The isset() function in PHP is used to detect whether a variable has been set and is not NULL.

If a variable has been released using unset(), it will return FALSE through isset().

If isset() is used to test a variable that is set to NULL, FALSE will be returned.

Also note that the null character ("\0") is not equivalent to PHP's NULL constant.

PHP version requirements: PHP 4, PHP 5, PHP 7

The syntax is

bool isset ( mixed $var [, mixed $... ] )
Copy after login

Parameter description:

$var: to be detected Variables.

If multiple parameters are passed in at one time, isset() will only return TRUE when all parameters are set. The calculation process is from left to right and will stop immediately when an unset variable is encountered.

Return value

If the specified variable exists and is not NULL, TRUE is returned, otherwise FALSE is returned.

Example

Copy after login

The output result is

变量已设置。 bool(true) bool(true) bool(false) bool(false) bool(false)
Copy after login

The above is the detailed content of What does isset in php mean?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!