diff options
Diffstat (limited to 'Zend/tests/object-null.phpt')
-rw-r--r-- | Zend/tests/object-null.phpt | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/Zend/tests/object-null.phpt b/Zend/tests/object-null.phpt deleted file mode 100644 index 650178c341..0000000000 --- a/Zend/tests/object-null.phpt +++ /dev/null @@ -1,21 +0,0 @@ ---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) |