Edit report at https://bugs.php.net/bug.php?id=52406&edit=1
ID: 52406 Comment by: ralph at ralphschindler dot com Reported by: jinmoku at hotmail dot com Summary: spl_autoload support phar with namespace Status: Open Type: Bug Package: PHAR related Operating System: XP, OSX PHP Version: 5.3.3 Block user comment: N Private report: N New Comment: This is not an issue, spl_autoload() is working as described, and furthermore, this is not a PHAR issue. Can someone close? -ralph Previous Comments: ------------------------------------------------------------------------ [2011-02-10 21:50:16] jinmoku at hotmail dot com it's more a PHAR problem ------------------------------------------------------------------------ [2011-02-10 21:49:24] jinmoku at hotmail dot com Add detect_unicode to off for OSX : ini_set('detect_unicode', false); I think all the files should be automatically put in lowercase. ------------------------------------------------------------------------ [2011-02-09 10:37:10] jinmoku at hotmail dot com Only way to work : $phar->addFromString(strtolower('index.php'), $index); $phar->addFromString(strtolower('Framework/Test.php'), $contents); or maybe do it in internal ------------------------------------------------------------------------ [2010-07-23 11:11:51] jinmoku at hotmail dot com Ok, I retry on XP and it's work, even if it isn't simple, a filename in project is not always in lowercase... Unfortunately it's doesn't work on osx, we see : set_include_path('phar://' . __FILE__ . PATH_SEPARATOR . get_include_path()); but after the require_once the phar path's gone, i'll check on other system and I come back ;) ------------------------------------------------------------------------ [2010-07-23 01:59:42] fel...@php.net What I am saying is: - Using require_once you might use (lowercase not required): $phar->addFromString('Framework/Test.php', $contents); require_once 'Framework/Test.php'; // the search is non-lowercased - Using spl_autoload() you must use (lowercase required): $phar->addFromString('framework/test.php', $contents); $test = new Framework\Test(); // spl_autoload() searchs for the lowercased namespace/classname.php ------------------------------------------------------------------------ The remainder of the comments for this report are too long. To view the rest of the comments, please view the bug report online at https://bugs.php.net/bug.php?id=52406 -- Edit this bug report at https://bugs.php.net/bug.php?id=52406&edit=1