From:             
Operating system: 
PHP version:      5.4.0RC5
Package:          SPL related
Bug Type:         Feature/Change Request
Bug description:FilesystemIterator::OTHER_MODE_MASK

Description:
------------
The FileSystemIterator defines a few constants to mask its flags:
CURRENT_MODE_MASK and KEY_MODE_MASK. However, there are other flags
(SKIP_DOTS and UNIX_PATHS) which cannot be masked of by a constant. 

However, internally, there is a mask constant defined
(SPL_FILE_DIR_OTHERS_MASK). It makes sense that this value is also known in
PHP userland by the OTHER_MODE_MASK constant.

The attached patch adds this constant and is compatible with trunk, php_5_4
and php_5_3 branches.

Test script:
---------------
<?php
$it = new fileSystemIterator(".", FileSystemIterator::SKIP_DOTS |
FileSystemIterator::CURRENT_AS_SELF);
$masked_flags = ($it->getFlags() & FileSystemIterator::OTHER_MODE_MASK);
print $masked_flags;

Expected result:
----------------
4096

Actual result:
--------------
PHP Notice:  Use of undefined constant OTHER_MODE_MASK - assumed
'OTHER_MODE_MASK' 

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

Reply via email to