php check if object is empty

47

$arr = (array)$obj;
if (!$arr) {
    // do stuff
}
if (empty($var)) {
    echo '$var is either 0, empty, or not set at all';
}
$x = new stdClass();
if( $obj !== null )
{
     // DO YOUR WORK
}

Comments

Submit
0 Comments