From:             ww dot galen at gmail dot com
Operating system: 
PHP version:      5.5.0
Package:          SimpleXML related
Bug Type:         Feature/Change Request
Bug description:SimpleXMLElement could register as implementing Countable

Description:
------------
SimpleXMLElement is essentially a Countable (it matches the signature of
the 
interface), but doesn't register as implementing it.

The attached (untested) patch should register SimpleXMLElement as a
Countable if 
SPL is also being built. It does not cover the case where someone builds
SPL as a 
shared extension (does anyone do that?).

Test script:
---------------
<?php
$x = new SimpleXMLElement('<?xml version="1.0"?><a><b/><c/></a>');
var_dump(count($x), $x instanceof Countable);


Expected result:
----------------
int(2)
bool(true)


Actual result:
--------------
int(2)
bool(false)


-- 
Edit bug report at https://bugs.php.net/bug.php?id=65215&edit=1
-- 
Try a snapshot (PHP 5.4):   
https://bugs.php.net/fix.php?id=65215&r=trysnapshot54
Try a snapshot (PHP 5.3):   
https://bugs.php.net/fix.php?id=65215&r=trysnapshot53
Try a snapshot (trunk):     
https://bugs.php.net/fix.php?id=65215&r=trysnapshottrunk
Fixed in SVN:               https://bugs.php.net/fix.php?id=65215&r=fixed
Fixed in release:           https://bugs.php.net/fix.php?id=65215&r=alreadyfixed
Need backtrace:             https://bugs.php.net/fix.php?id=65215&r=needtrace
Need Reproduce Script:      https://bugs.php.net/fix.php?id=65215&r=needscript
Try newer version:          https://bugs.php.net/fix.php?id=65215&r=oldversion
Not developer issue:        https://bugs.php.net/fix.php?id=65215&r=support
Expected behavior:          https://bugs.php.net/fix.php?id=65215&r=notwrong
Not enough info:            
https://bugs.php.net/fix.php?id=65215&r=notenoughinfo
Submitted twice:            
https://bugs.php.net/fix.php?id=65215&r=submittedtwice
register_globals:           https://bugs.php.net/fix.php?id=65215&r=globals
PHP 4 support discontinued: https://bugs.php.net/fix.php?id=65215&r=php4
Daylight Savings:           https://bugs.php.net/fix.php?id=65215&r=dst
IIS Stability:              https://bugs.php.net/fix.php?id=65215&r=isapi
Install GNU Sed:            https://bugs.php.net/fix.php?id=65215&r=gnused
Floating point limitations: https://bugs.php.net/fix.php?id=65215&r=float
No Zend Extensions:         https://bugs.php.net/fix.php?id=65215&r=nozend
MySQL Configuration Error:  https://bugs.php.net/fix.php?id=65215&r=mysqlcfg

Reply via email to