ID: 37149 Updated by: [EMAIL PROTECTED] Reported By: troelskn at gmail dot com -Status: Open +Status: Bogus Bug Type: SPL related -Operating System: Any +Operating System: * -PHP Version: 5.1.2 +PHP Version: * -Assigned To: +Assigned To: helly New Comment:
Thank you for taking the time to write to us, but this is not a bug. Please double-check the documentation available at http://www.php.net/manual/ and the instructions on how to report a bug at http://bugs.php.net/how-to-report.php it is an object not an array, use "instanceof ArrayAccess" Previous Comments: ------------------------------------------------------------------------ [2006-04-20 16:14:44] troelskn at gmail dot com Description: ------------ Using is_array() on an instance of ArrayObject returns FALSE. While strictly speaking this is true, it would make sense to return TRUE in most application-level code. Expected result: ---------------- A solution could be to add an argument to is_array, which relaxes the check to include ArrayObject. Eg. : bool is_array ( mixed var, [bool strict] ) $obj = new ArrayObject(); is_array($obj, FALSE); // returns TRUE is_array($obj); // returns FALSE ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=37149&edit=1