如何使用PHP检查是否设置了变量?
我们给出了一个变量,任务是检查PHP是否设置了变量var 。为了完成这个任务,我们在PHP有以下方法:
方法一:使用isset ()方法: isset ()方法 如果声明了变量并且其值不等于 NULL,则返回True 。
句法:
bool isset( mixed $var [, mixed $... ] )
例子 :
PHP
PHP
PHP
输出
Value of variable is set
方法 2:使用 ! empty() 方法:如果声明了变量并且其值等于空而不是集合,则 empty() 方法返回True 。
句法:
bool empty( $var )
例子 :
PHP
输出
Value of variable is set
方法 3:使用 ! is_null() 方法:如果声明了变量并且其值等于 Null 而不是集合,则 is_null() 方法返回True 。
句法:
bool empty( $var )
例子 :
PHP
输出
Value of variable is set