diff options
author | SVN Migration <svn@php.net> | 2006-08-15 13:14:48 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2006-08-15 13:14:48 +0000 |
commit | 1bfb88081d1fb0211feaa18b8a5b635fc03594b8 (patch) | |
tree | 80d09fe7fec47fd936eb7abf5e9a5b729573db9a /Zend/tests/object-null.phpt | |
parent | 407caf3a0c260e37985693201cda727a1b0dc128 (diff) | |
download | php-git-php-5.1.5.tar.gz |
This commit was manufactured by cvs2svn to create tag 'php_5_1_5'.php-5.1.5
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) |