|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-07-09 22:14 UTC] helly@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 01:00:01 2025 UTC |
Description: ------------ Works as expected in PHP 5.1.2 Tried on latest cvs: php5.2-200606141430 Reproduce code: --------------- <? class test { } $test = new test; var_dump(isset($test)); var_dump($test != ""); ?> Expected result: ---------------- bool(true) bool(true) Actual result: -------------- bool(true) bool(false)