检查变量是否为空

时间:2015-09-15 05:30:20

标签: php

所以,我有一个输入如下:

private BigInteger bigInteger = BigInteger.ONE;

public void add(BigInteger plus) {
    bigInteger = bigInteger.add(plus);
}

作为变量存储的内容:

<input type="text" id="rhc_phone" name="rhc_phone" placeholder="Phone number"/>     

然后可以通过以下方式提取:

var data = {

    'phone': $('#rhc_phone').val()

         };

但是,输入可以省略。

现在,检查变量是否有 <?php echo ' <p>Call me at ' . $_POST['phone'] . '.</p> '; ?> 的if语句是什么,如果没有,则显示如下所示的其他内容。

value

这是对的吗?

谢谢!

2 个答案:

答案 0 :(得分:2)

使用空

if(!empty($_POST['phone'])
{ 
   echo '<p>Call me at'. $_POST['phone'] . '</p>'; 
} else {
   echo '<p>No Number</p>';
}

答案 1 :(得分:1)

您可以使用empty()功能。

php empty() function

if(empty($_POST['phone']))
{
    echo '<p>Number is empty</p>';
}
else
{
    echo '<p>Your Number is '.$_POST['phone'].'</p>';

}