summaryrefslogtreecommitdiff
path: root/Zend/tests/object-null.phpt
blob: 650178c3416de1043b2d121fc188725b621bb3fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--TEST--
Test whether an object is NULL or not.
--FILE--
<?php

class Bla
{
}

$b = new Bla;

var_dump($b != null);
var_dump($b == null);
var_dump($b !== null);
var_dump($b === null);
?>
--EXPECT--
bool(true)
bool(false)
bool(true)
bool(false)