From:             savinger at sc dot rr dot com
Operating system: OSX
PHP version:      5.4.11
Package:          Dynamic loading
Bug Type:         Feature/Change Request
Bug description:Resource Identification in Autoload Callback

Description:
------------
Is there any way for me to differentiate between traits and classes in my
autoload 
function? Say I have a folder of classes and a folder of traits; it would
be nice 
to be able to do something like...

Test script:
---------------
spl_autoload_register(function($resource) {
  if ( /* $resource is class */ ) {
    include 'classes/'.$resource.'.php';
  } 
  if ( /* $resource is trait */ ) {
    include 'traits/'.$resource.'.php';
  }
});


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

Reply via email to