If you like SEOmastering Forum, you can support it by - BTC: bc1qppjcl3c2cyjazy6lepmrv3fh6ke9mxs7zpfky0 , TRC20 and more...

 

Why use ISSET()?

Started by chinmay.sahoo, 02-22-2016, 06:01:00

Previous topic - Next topic

chinmay.sahooTopic starter

The isset () function is used to check whether a variable is set or not. If a variable is already unset with unset() function, it will no longer be set. The isset() function return false if testing variable contains a NULL value


Syntax: isset(variable1, variable2......)


Eg:
Quote<?php
$var1 = 'test';
var_dump(isset($var1));
?>



If you like SEOmastering Forum, you can support it by - BTC: bc1qppjcl3c2cyjazy6lepmrv3fh6ke9mxs7zpfky0 , TRC20 and more...