|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-11-29 02:32 UTC] olafurw at gmail dot com
[2009-04-25 14:52 UTC] jani@php.net
[2009-04-25 16:01 UTC] desarrollo at c17 dot net
[2009-04-25 21:10 UTC] desarrollo at c17 dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 03 17:00:01 2025 UTC |
Description: ------------ When I try to compare a PDO object with itself, it's supposed to be equal, but the '==' operator doesn't seems to work properly. Reproduce code: --------------- <? $oPDO = new PDO('sqlite::memory:'); var_dump($oPDO == $oPDO); ?> Expected result: ---------------- bool(true) Actual result: -------------- bool(false)