[PHP-BUG] Req #60577 [NEW]: count(new EmptyIterator) returns 1

2011-12-20 Thread adam at sixohthree dot com
From: 
Operating system: 
PHP version:  5.4SVN-2011-12-20 (SVN)
Package:  SPL related
Bug Type: Feature/Change Request
Bug description:count(new EmptyIterator) returns 1

Description:

As an object that simulates a list of zero items, count(new EmptyIterator)
should 
return zero.

Test script:
---
?php
$it = new EmptyIterator;
var_dump(count($it));

Expected result:

int(0)

Actual result:
--
int(1)

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



[PHP-BUG] Bug #60159 [NEW]: Router returns false, but POST is not passed to requested resource

2011-10-28 Thread adam at sixohthree dot com
From: 
Operating system: Mac OS X 10.6.8
PHP version:  5.4.0beta2
Package:  Built-in web server
Bug Type: Bug
Bug description:Router returns false, but POST is not passed to requested 
resource

Description:

If the built-in web server's router returns false, and the requested
resource is a 
PHP file, this PHP file will be interpreted but will not receive the same
POST 
data as the router. I would expect the requested resource to receive POST,
for 
cases when the router is only intended to handle files that do not exist
(e.g. 
RewriteCond's !-f). WordPress requires this behavior, though I'm sure it's
not 
alone.

Test script:
---
router.php:

?php return false;

index.php:

?php var_dump( $_POST );

Expected result:

# php -S localhost:8080 router.php
# curl -d foo=bar http://localhost:8080/
array(1) {
  [foo]=
  string(3) bar
}

# php -S localhost:8080
# curl -d foo=bar http://localhost:8080/
array(1) {
  [foo]=
  string(3) bar
}

Actual result:
--
# php -S localhost:8080 router.php
# curl -d foo=bar http://localhost:8080/
array(0) {
}

# php -S localhost:8080
# curl -d foo=bar http://localhost:8080/
array(1) {
  [foo]=
  string(3) bar
}

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