PHP isset() Function

The isset() function is used to check if string value contains valid characters.

Demo :



Type Character :  
Is Not Set

Following code is used to isset() demo code If you need to copy and use to your web site.


<?php
$str = " Hello World ";
$result = isset($str);
echo $result;
?>

The isset() function have in the many parameters that name some is mixed var,[mixed var],[...].

Free Download Script :

If you need isset() function demo code download from following link.

Download




Content