close
<?php
$var_name=false;
if (is_bool($var_name))
echo 'This is a boolean.';
else
echo 'This is not a boolean.';
?>
輸出:
This is a boolean.
全站熱搜
<?php
$var_name=false;
if (is_bool($var_name))
echo 'This is a boolean.';
else
echo 'This is not a boolean.';
?>
輸出:
This is a boolean.