Edit report at https://bugs.php.net/bug.php?id=62976&edit=1
ID: 62976 Updated by: larue...@php.net Reported by: ladislav at marek dot su Summary: Notice: could not be converted to int when comparing some builtin classes -Status: Open +Status: Closed Type: Bug Package: Class/Object related Operating System: Linux PHP Version: 5.4Git-2012-08-30 (Git) -Assigned To: +Assigned To: laruence Block user comment: N Private report: N New Comment: This bug has been fixed in SVN. Snapshots of the sources are packaged every three hours; this change will be in the next snapshot. You can grab the snapshot at http://snaps.php.net/. For Windows: http://windows.php.net/snapshots/ Thank you for the report, and for helping us make PHP better. Previous Comments: ------------------------------------------------------------------------ [2012-08-31 03:22:57] larue...@php.net Automatic comment on behalf of laruence Revision: http://git.php.net/?p=php-src.git;a=commit;h=5dc2cef370885c552c20f3ff44bccd402850de9e Log: Fixed bug #62976 (Notice: could not be converted to int when comparing some builtin classes) ------------------------------------------------------------------------ [2012-08-30 17:58:53] reeze dot xia at gmail dot com Hi, I proposed a patch for this: https://github.com/php/php-src/pull/179 ------------------------------------------------------------------------ [2012-08-30 17:40:24] reeze dot xia at gmail dot com After the fix for #61326 ArrayObject have different compare_objects handler: http://git.php.net/?p=php- src.git;a=commit;h=23e65a9dcc71cf11ee5ec82c256588626545d4db There is an test case the same as bug report: https://github.com/php/php-src/blob/master/tests/lang/compare_objects_basic2.phpt I agree with @laruence that it could be improved. if both of the object couldn't be cast to compare. they ARE not equal. ------------------------------------------------------------------------ [2012-08-30 16:13:03] larue...@php.net Arrayobject is share the same object handlers as stdClass, but exception does. anyway, I think there is a room to improve.. ------------------------------------------------------------------------ [2012-08-30 13:16:10] ladislav at marek dot su Description: ------------ Comparing instance of some builtin class with instance of different class issues notice: "Object of class ArrayObject could not be converted to int". Test script: --------------- new stdClass == new ArrayObject; // but "new stdClass == new Exception" works without notice Actual result: -------------- Notice: Object of class ArrayObject could not be converted to int in Command line code on line 1 Notice: Object of class stdClass could not be converted to int in Command line code on line 1 ------------------------------------------------------------------------ -- Edit this bug report at https://bugs.php.net/bug.php?id=62976&edit=1