yoursurrogategod Posted March 15, 2013 Share Posted March 15, 2013 I have a good background in C/C++ and was would like to put it to good use. What extensions do you guys think are a good idea? Stuff that you'd like to have in the PHP language itself? Quote Link to comment https://forums.phpfreaks.com/topic/275698-what-php-extension-would-you-like-to-have/ Share on other sites More sharing options...
requinix Posted March 15, 2013 Share Posted March 15, 2013 How about looking through the PHP bug list, investigating bugs, and submitting patches? Quote Link to comment https://forums.phpfreaks.com/topic/275698-what-php-extension-would-you-like-to-have/#findComment-1418842 Share on other sites More sharing options...
Philip Posted March 15, 2013 Share Posted March 15, 2013 I'd like one that creates me breakfast. No, seriously. But yeah, I think submitting patches would be more productive for you & others as well. Quote Link to comment https://forums.phpfreaks.com/topic/275698-what-php-extension-would-you-like-to-have/#findComment-1418846 Share on other sites More sharing options...
Hall of Famer Posted March 29, 2013 Share Posted March 29, 2013 A PHP collections framework to manipulate collection of objects, similar to Java's. Lets face it, PHP's array is not that useful despite being much more powerful than Java's, and more importantly it is not object and thus the flaws are pretty much impossible to fix. Start with SplFixedArray and work on a collections framework from it, I believe its doable. In fact I am creating a PHP collections framework myself, working on HashMap right now. However, considering User-created classes will never be as efficient as PHP's built-in classes, it is definitely better to have a built-in collections framework in PHP's core. Quote Link to comment https://forums.phpfreaks.com/topic/275698-what-php-extension-would-you-like-to-have/#findComment-1421796 Share on other sites More sharing options...
KevinM1 Posted March 29, 2013 Share Posted March 29, 2013 PHP's array is not that useful despite being much more powerful than Java's, and more importantly it is not object and thus the flaws are pretty much impossible to fix.You do realize that arrays in C and C++ aren't objects, right? And that Java isn't the end-all, be-all? Not everything needs to be an object. That you believe it must only highlights your ignorance and lack of experience. PHP doesn't need parameterized types as it's loosely typed. And the SPL already has most of the other collection structures (linked list, stack, queue) covered. Quote Link to comment https://forums.phpfreaks.com/topic/275698-what-php-extension-would-you-like-to-have/#findComment-1421808 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.