今天学习关于PHP 测试变量状态的函数

我使用的是 微羽网站服务器 PHP 为5.6.30版本

测试

<?
$tireqty=0;

    echo 'isset($tireqty):'.isset($tireqty).'<br/>';
    echo 'isset($nothere):'.isset($tireqty).'<br/>';
    echo 'empty($tireqty):'.empty($tireqty).'<br/>';
    echo 'empty($nothere):'.empty($nothere).'<br/>';
?>

的时候,浏览器直接返回了

posted @ 2017-12-19 17:12  Corail  阅读(142)  评论(0编辑  收藏  举报